Skip to content

Merge pull request #65 from FlickerSoul/main #252

Merge pull request #65 from FlickerSoul/main

Merge pull request #65 from FlickerSoul/main #252

Workflow file for this run

name: tests
on:
push:
branches:
- main
pull_request:
jobs:
tests:
name: python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11"]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: pip install poetry
- name: Generate lockfile
run: poetry lock
- name: Install nox
run: pip install nox nox-poetry
- name: Run nox
run: nox --python ${{ matrix.python-version }} --session test