Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 8 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,24 +35,23 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
# ATTIC_TOKEN_PUBLIC only exists in the public-cache environment; master
# jobs must opt into it to publish to the public cache.
environment: ${{ github.ref == 'refs/heads/master' && 'public-cache' || '' }}

runs-on: ${{ matrix.os }}
timeout-minutes: 90

steps:
- name: Checkout
uses: actions/checkout@v4
# The runner is the shared `doctest` CLI, invoked directly via its flake

- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main

- name: Setup Cachix
uses: cachix/cachix-action@v15
- name: Setup Nix and Logos cache
uses: logos-co/setup-nix-cache-action@v1
with:
name: logos-co
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'

# The runner is the shared `doctest` CLI, invoked directly via its flake
attic-token-ci: ${{ secrets.ATTIC_TOKEN_CI }}
attic-token-public: ${{ secrets.ATTIC_TOKEN_PUBLIC }}
# (github:logos-co/logos-doctest). The flake bundles Python + PyYAML
# (+ rich), so no pip install step is needed.
- name: Test - UI chain + Composing Modules + Dependency Interfaces (C Library tutorial pulled in via requires)
Expand Down
Loading