Skip to content

TST Update tests

TST Update tests #8

name: "Build & test (python on nix)"
on:
pull_request:
push:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- python38
- python39
- python310
- python311
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v25
with:
nix_path: nixpkgs=channel:nixos-unstable
extra_nix_config: |
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ=
substituters = https://cache.nixos.org https://nix-community.cachix.org https://hydra.iohk.io
- uses: cachix/cachix-action@v14
with:
name: luispedro
# If you chose API tokens for write access OR if you have a private cache
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: nix build -f . python --argstr pythonVersion ${{ matrix.python-version }}