Skip to content

Merge pull request #83 from gandersen101/testing/updating-deps-to-tes… #22

Merge pull request #83 from gandersen101/testing/updating-deps-to-tes…

Merge pull request #83 from gandersen101/testing/updating-deps-to-tes… #22

name: Lint, Typecheck and Test
on: [push]
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.11', '3.10', '3.9', '3.8', '3.7']
os: [ubuntu-latest, macos-latest, windows-latest]
name: Lint/Check/Test - Python ${{ matrix.python-version }} - ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install Root Dependencies
run: pip install nox poetry
- name: Run Nox Sessions
run: nox --python ${{ matrix.python-version }}