Release IP address on session stop #8
Workflow file for this run
This file contains 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: Unit tests and linters | |
# Run unit tests on all pull requests | |
on: | |
pull_request: | |
env: | |
GOFLAGS: "-count=1" | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
environment: production | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.21.x' | |
- name: Install protoc | |
run: sudo apt install -y protobuf-compiler | |
- name: Unit tests and linters | |
run: | | |
go run mage.go -v Generate | |
go run mage.go -v Check | |
go run mage.go -v TestWithCoverage | |
- name: Upload codecov report | |
uses: codecov/codecov-action@v4 | |
with: | |
file: ./coverage.txt | |
token: ${{ secrets.CODECOV_TOKEN }} | |