github.com/cilium/statedb@v0.3.2/.github/workflows/main.yml (about) 1 name: main 2 on: 3 push: 4 branches: 5 - main 6 7 env: 8 GO_VERSION: 1.23 9 10 jobs: 11 test: 12 runs-on: ubuntu-latest 13 steps: 14 - uses: actions/setup-go@v2 15 with: 16 go-version: ${{ env.GO_VERSION }} 17 - uses: actions/checkout@v3 18 with: 19 fetch-depth: 0 20 - name: test 21 run: | 22 make all 23