NONEVM-629: Link Token Changes (#535) #3534
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: Relayer | |
on: | |
push: | |
branches: | |
- develop | |
- main | |
pull_request: | |
jobs: | |
relayer_run_unit_tests: | |
name: Run Unit Tests ${{ matrix.test-type.name }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
test-type: | |
- name: test-unit-go | |
id: unit | |
- name: test-unit-go-race | |
id: race | |
- name: test-integration-go | |
id: integration | |
steps: | |
- name: Collect Metrics | |
if: matrix.test-type.id != 'race' | |
id: collect-gha-metrics | |
uses: smartcontractkit/push-gha-metrics-action@d9da21a2747016b3e13de58c7d4115a3d5c97935 # v3.0.1 | |
with: | |
id: starknet-relay-unit-${{ matrix.test-type.id }} | |
org-id: ${{ secrets.GRAFANA_INTERNAL_TENANT_ID }} | |
basic-auth: ${{ secrets.GRAFANA_INTERNAL_BASIC_AUTH }} | |
hostname: ${{ secrets.GRAFANA_INTERNAL_HOST }} | |
this-job-name: Run Unit Tests ${{ matrix.test-type.name }} | |
test-results-file: '{"testType":"go","filePath":"/tmp/gotest.log"}' | |
- name: Checkout sources | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Install Nix | |
uses: cachix/install-nix-action@3715ab1a11cac9e991980d7b4a28d80c7ebdd8f9 # nix:v2.24.6 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- name: Build | |
run: nix develop -c sh -c "make build-go-relayer" | |
- name: Run ${{ matrix.test-type.name }} | |
run: nix develop -c sh -c "make ${{ matrix.test-type.name }} LOG_PATH=/tmp/gotest.log" | |
- name: Upload Golangci relayer results | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: go-unit-tests-results-${{ matrix.test-type.id }} | |
path: | | |
/tmp/gotest.log | |
./relayer/output.txt | |
./relayer/coverage.txt | |
./relayer/race_coverage.txt | |
check-tidy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | |
- name: Set up Go | |
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
with: | |
go-version-file: "relayer/go.mod" | |
- name: Ensure "make gomodtidy" has been run | |
run: | | |
make gomodtidy | |
git diff --exit-code | |
- name: Ensure "make generate" has been run | |
run: | | |
make rm-mocked | |
make generate | |
git diff --stat --exit-code |