Provider checker API #243
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: Tests | |
on: | |
pull_request: | |
env: | |
GOFLAGS: "-count=1" | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clean previous go installation | |
run: | | |
rm -rf /opt/hostedtoolcache/go | |
- uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22.x' | |
- name: Install protoc | |
run: | | |
sudo apt-get update | |
sudo apt-get 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 }} | |
e2e-basic: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clean previous go installation | |
run: | | |
rm -rf /opt/hostedtoolcache/go | |
- uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22.x' | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: E2E basic test | |
run: go run mage.go -v TestE2EBasic | |
e2e-nat: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clean previous go installation | |
run: | | |
rm -rf /opt/hostedtoolcache/go | |
- uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22.x' | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: E2E NAT test | |
run: go run mage.go -v TestE2ENAT | |
verify-build: | |
needs: [unit-tests, e2e-basic, e2e-nat] | |
uses: ./.github/workflows/build-packages.yml | |
secrets: inherit |