github.com/projecteru2/core@v0.0.0-20240321043226-06bcc1c23f58/.github/workflows/test.yml (about) 1 name: test 2 3 on: 4 push: 5 tags: 6 - '!v*' 7 branches: 8 - '*' 9 pull_request: 10 11 jobs: 12 unittests: 13 runs-on: ubuntu-latest 14 steps: 15 - uses: actions/checkout@v4 16 - uses: actions/setup-go@v4 17 with: 18 go-version-file: 'go.mod' 19 - name: unit tests 20 run: make test