Update smartcontractkit/.github requirement to e11dad26e54b45a6db2dd4… #2720
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: SETH Decoding tests | |
on: | |
push: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
defaults: | |
run: | |
working-directory: seth | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
network: [Anvil, Geth] | |
env: | |
SETH_ROOT_PRIVATE_KEY: ac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
- name: Check for changes in Seth project | |
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 | |
id: changes | |
with: | |
filters: | | |
src: | |
- 'seth/**' | |
- uses: cachix/install-nix-action@08dcb3a5e62fa31e2da3d490afc4176ef55ecd72 # v30 | |
if: steps.changes.outputs.src == 'true' | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- name: Run tests | |
if: steps.changes.outputs.src == 'true' | |
env: | |
SETH_NETWORK: ${{ matrix.network }} | |
run: | | |
nix develop -c make "$SETH_NETWORK" && make SETH_LOG_LEVEL=debug root_private_key="$SETH_ROOT_PRIVATE_KEY" network="$SETH_NETWORK" test |