github.com/luckypickle/go-ethereum-vet@v1.14.2/.github/workflows/test.yaml (about) 1 name: Unit Tests 2 3 on: 4 workflow_call: 5 6 jobs: 7 unit_tests: 8 strategy: 9 matrix: 10 go-version: [ 1.22.x ] 11 os: [ ubuntu-latest ] 12 runs-on: ${{ matrix.os }} 13 steps: 14 - name: Checkout code 15 uses: actions/checkout@v4 16 17 - name: Install Go 18 uses: actions/setup-go@v5 19 with: 20 go-version: ${{ matrix.go-version }} 21 22 - name: Make all 23 run: make all 24 25 - name: Make Test 26 id: unit-test 27 run: make test