Bugfix/CO Columns (#180) #766
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
# Run unit tests | |
name: Unit tests | |
on: [push] | |
jobs: | |
build: | |
# Usnure of exact issue, but this seems to fix it, and more details here: | |
# https://github.com/actions/setup-python/issues/544 | |
# https://github.com/actions/setup-python/issues/665 | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
check-latest: true | |
cache: 'pip' | |
- name: Install package (and dependencies) | |
run: pip install -e . | |
# Run tests | |
- name: Run tests | |
run: python -m pytest |