.github/actions/install-nix: cache with magic-nix-cache #7
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: Test | |
on: | |
pull_request: | |
push: | |
jobs: | |
nix-flake-check: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
runs-on: ${{matrix.os}} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/install-nix | |
- name: Check Nix Flake Evaluation | |
run: nix flake check --no-build --keep-going | |
- name: Check Nix Flake | |
run: nix flake check --keep-going | |
check-format: | |
runs-on: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/install-nix | |
- name: Check if the codebase is formatted | |
run: nix develop -c treefmt --ci | |
test-with-poetry: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
runs-on: ${{matrix.os}} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{matrix.python-version}} | |
- uses: abatilo/actions-poetry@v2 | |
- name: "Run poetry install for infra" | |
uses: ./.github/actions/poetry-install | |
- name: "Run poetry install for transcript-timestamper" | |
uses: ./.github/actions/poetry-install | |
with: | |
workdir: transcript-timestamper | |
- name: "Run poetry install for transcript-timestamper-ui" | |
uses: ./.github/actions/poetry-install | |
with: | |
workdir: transcript-timestamper-ui | |
- name: "Run poetry install for twly-meeting-fetchers" | |
uses: ./.github/actions/poetry-install | |
with: | |
workdir: twly-meeting-fetchers |