fixup! matrix run on macos too #3
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
on: | |
push: | |
branches: | |
- '*' | |
jobs: | |
nix-shell: | |
strategy: | |
matrix: | |
os: [ macos-latest, ubuntu-latest ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
# Fetch the whole history for all tags and branches (required for aleph.__version__) | |
fetch-depth: 0 | |
- name: Set up Nix | |
uses: cachix/install-nix-action@v13 | |
with: | |
nix_path: nixpkgs=channel:nixos-23.11 | |
- name: Run tests | |
run: nix-shell --run "pytest" |