Skip to content

[TT-437] K8s Test Cluster Stability Improvements #2209

[TT-437] K8s Test Cluster Stability Improvements

[TT-437] K8s Test Cluster Stability Improvements #2209

Workflow file for this run

name: Relayer
on:
push:
branches:
- develop
- main
pull_request:
jobs:
relayer_run_unit_tests:
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
- name: Install Nix
uses: cachix/install-nix-action@29bd9290ef037a3ecbdafe83cbd2185e9dd0fa0a # v20
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: Build
run: nix develop -c make build-go-relayer
- name: Unit Test
run: nix develop -c make test-unit-go
- name: Install starknet-devnet (via venv+pip)
run: nix develop -c pip install -r contracts/requirements.txt -c contracts/constraints.txt
- name: Integration Test
run: nix develop -c make test-integration-go