add mnemonic to ethpkg #37
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: Run Justfile | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
justfile: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# from: | |
# - cosmos/solidity-ibc-eureka | |
# - https://docs.kurtosis.com/install | |
- name: Setup Kurtosis | |
run: | | |
echo "deb [trusted=yes] https://apt.fury.io/kurtosis-tech/ /" | sudo tee /etc/apt/sources.list.d/kurtosis.list | |
sudo apt update | |
sudo apt install kurtosis-cli | |
kurtosis engine start | |
kurtosis analytics disable | |
echo "$(dirname $(which kurtosis))" >> $GITHUB_PATH | |
- name: Setup Nix | |
uses: nixbuild/nix-quick-install-action@v29 | |
- name: Cache Nix store | |
uses: nix-community/cache-nix-action@v5 | |
with: | |
primary-key: ${{ runner.os }}-nix-${{ hashFiles('**/*.nix') }} | |
restore-prefixes-first-match: ${{ runner.os }}-nix- | |
- name: Use Cachix for Ethereum Nix | |
uses: cachix/cachix-action@v15 | |
with: | |
name: ethereum-nix | |
extraPullNames: nix-community | |
- name: Cache Cargo build | |
uses: actions/cache@v4 | |
with: | |
path: | | |
target | |
~/.cargo/registry | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: ${{ runner.os }}-cargo- | |
- name: Prepare nix | |
run: | | |
nix build | |
nix flake check --all-systems | |
- name: Run Justfile | |
run: nix shell -c just |