chore(python): update python dependencies #131
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: "Nix smoke test" | |
on: | |
pull_request: | |
branches: [ "master" ] | |
paths: | |
- 'flake.lock' | |
- 'requirements_freeze.txt' | |
- '**.nix' | |
- '.github/workflows/nix_smoke.yaml' | |
workflow_dispatch: | |
jobs: | |
nix_smoke: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v30 | |
with: | |
extra_nix_config: | | |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} | |
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ= iohk.cachix.org-1:DpRUyj7h7V830dp/i6Nti+NEO2/nhblbov/8MW7Rqoo= | |
substituters = https://cache.nixos.org https://cache.iog.io https://iohk.cachix.org | |
allow-import-from-derivation = true | |
- name: Run pytest in Nix | |
run: TEST_THREADS=0 PYTEST_ARGS="-k test_cli.py --skipall" ./.github/regression.sh |