23 lines
373 B
YAML
23 lines
373 B
YAML
|
|
name: CI
|
||
|
|
|
||
|
|
on:
|
||
|
|
push:
|
||
|
|
branches:
|
||
|
|
- main
|
||
|
|
- feature/*
|
||
|
|
|
||
|
|
jobs:
|
||
|
|
Build:
|
||
|
|
runs-on: docker
|
||
|
|
steps:
|
||
|
|
- name: Checkout
|
||
|
|
uses: actions/checkout@v2
|
||
|
|
- name: Setup Go
|
||
|
|
uses: actions/setup-go@v3
|
||
|
|
with:
|
||
|
|
go-version: 1.25
|
||
|
|
- name: Test
|
||
|
|
run: |
|
||
|
|
set -xue
|
||
|
|
go get ./...
|
||
|
|
go test -p 1 ./...
|