Added template files (#48) #96
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: Test | |
| # Put 'on' in quotes to avoid YAML parsing error | |
| "on": | |
| # Enable manual triggering | |
| workflow_dispatch: {} | |
| # Run on commits to main branch | |
| push: | |
| branches: | |
| - main | |
| # Run only on changes to relevant files | |
| paths: | |
| - .github/workflows/test.yaml | |
| - src/** | |
| - tests/** | |
| - flake.lock | |
| - "*.nix" | |
| - pyproject.toml | |
| - Taskfile.dist.yaml | |
| - uv.lock | |
| # Run also on pull requests to main branch | |
| pull_request: | |
| branches: | |
| - main | |
| # Run only on changes to relevant files | |
| paths: | |
| - .github/workflows/test.yaml | |
| - src/** | |
| - tests/** | |
| - flake.lock | |
| - "*.nix" | |
| - pyproject.toml | |
| - Taskfile.dist.yaml | |
| - uv.lock | |
| jobs: | |
| test: | |
| name: Test | |
| # Pin version of Ubuntu to avoid breaking changes | |
| runs-on: ubuntu-24.04 | |
| # Use reasonable timeout to avoid stuck workflows | |
| timeout-minutes: 30 | |
| env: | |
| NIX_CACHE_DIR: /home/runner/.nixcache/ | |
| permissions: | |
| # Needed to checkout code | |
| contents: read | |
| steps: | |
| - name: Checkout code | |
| uses: actions/[email protected] | |
| - name: Setup Nix cache | |
| uses: actions/[email protected] | |
| id: cache-nix | |
| with: | |
| path: ${{ env.NIX_CACHE_DIR }} | |
| key: test-nix | |
| - name: Install Nix | |
| uses: cachix/[email protected] | |
| with: | |
| github_access_token: ${{ github.token }} | |
| install_url: https://releases.nixos.org/nix/nix-2.28.5/install | |
| # See: https://github.com/cachix/install-nix-action/issues/56 | |
| - name: Import Nix store cache | |
| if: steps.cache-nix.outputs.cache-hit == 'true' | |
| run: >- | |
| nix-store | |
| --import | |
| < ${{ env.NIX_CACHE_DIR }}/archive.nar | |
| - name: Run tests | |
| run: >- | |
| nix | |
| develop | |
| ./#test | |
| --command | |
| -- | |
| task | |
| test | |
| # See: https://github.com/cachix/install-nix-action/issues/56 | |
| - name: Export Nix store cache | |
| if: "!cancelled()" | |
| run: >- | |
| mkdir | |
| --parents | |
| ${{ env.NIX_CACHE_DIR }} | |
| && | |
| nix-store | |
| --export $(find /nix/store/ -maxdepth 1 -name '*-*') | |
| > ${{ env.NIX_CACHE_DIR }}/archive.nar |