Remove reliance on non existing docker image #208
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| # The branches below must be a subset of the branches above | |
| branches: [main] | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go ${{vars.GO_VERSION}} | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{vars.GO_VERSION}} | |
| id: go | |
| - name: install zmq headers | |
| run: sudo apt-get update && sudo apt-get install -y libzmq3-dev protoc-gen-go protobuf-compiler | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v5 | |
| - name: Download Modules | |
| run: go mod download | |
| - name: Tests | |
| run: make vet unittest test-tidy test-fmt | |
| - name: Build a binary | |
| run: make # not all binaries to help speed up builds | |
| - name: Upload to codecov | |
| uses: codecov/codecov-action@v5 |