Skip to content

Updated nix flake for a handy devshell #27

Updated nix flake for a handy devshell

Updated nix flake for a handy devshell #27

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- name: checkout
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '${{ matrix.python-version }}'
- name: Install dependencies
run: |
pip install six cachetools
- name: Run tests
run: |
PYTHONPATH=$(pwd) python tests/__init__.py