Fix retry on submit timeout #247
Workflow file for this run
This file contains hidden or 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' | |
| - 'uv.lock' | |
| - '**.nix' | |
| - '.github/workflows/nix_smoke.yaml' | |
| workflow_dispatch: | |
| jobs: | |
| nix_smoke: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v31 | |
| 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: | | |
| # env | |
| echo "::group::Script setup" | |
| PY_COLORS=1 TEST_THREADS=0 PYTEST_ARGS="-k test_cli.py --skipall" ./runner/regression.sh | |
| echo "::endgroup::" |