-
Notifications
You must be signed in to change notification settings - Fork 312
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5975 from mysteriumnetwork/ci-migration
GitHub Actions trigger conditions update
- Loading branch information
Showing
4 changed files
with
64 additions
and
80 deletions.
There are no files selected for viewing
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
name: Tests | ||
on: | ||
pull_request: | ||
|
||
env: | ||
GOFLAGS: "-count=1" | ||
|
||
jobs: | ||
unit-tests: | ||
runs-on: ubuntu-latest | ||
|
||
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 }} | ||
|
||
e2e-tests: | ||
runs-on: ubuntu-latest | ||
needs: unit-tests | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.21.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 | ||
|
||
- name: E2E NAT test | ||
run: go run mage.go -v TestE2ENAT | ||
|
||
verify-build: | ||
needs: [unit-tests, e2e-tests] | ||
uses: ./.github/workflows/build-packages.yml | ||
secrets: inherit |
This file was deleted.
Oops, something went wrong.