github.com/Axway/agent-sdk@v1.1.101/.github/workflows/tests-action.yml (about) 1 name: Run test 2 3 on: 4 push: 5 branches: ["**"] 6 7 jobs: 8 test: 9 runs-on: ubuntu-latest 10 steps: 11 - uses: actions/checkout@v4 12 13 - name: Set up Go 14 uses: actions/setup-go@v5 15 with: 16 go-version: 1.21 17 18 - name: Test 19 run: make test