diff options
| author | Marc Vertes <mvertes@free.fr> | 2024-06-05 17:11:39 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-05 17:11:39 +0200 |
| commit | 4b9aa3e711be2db1209f76c040ecaead16f507ff (patch) | |
| tree | c079c82ed0450770b1ef48900c300fac7675d136 | |
| parent | 0063922f5c8a07b78603b2da7f6a3c2094711c3d (diff) | |
Create go.yml
| -rw-r--r-- | .github/workflows/go.yml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 0000000..5724b60 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,28 @@ +# This workflow will build a golang project +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go + +name: Go + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.22' + + - name: Build + run: go build -v ./... + + - name: Test + run: go test -v ./... |
