Skip to content

Merge pull request #161 from Jmennius/document-choice-better #97

Merge pull request #161 from Jmennius/document-choice-better

Merge pull request #161 from Jmennius/document-choice-better #97

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: '${{ matrix.os }}: ${{ matrix.python-version }}'
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Tox
run: pip install tox
- name: Tox
run: tox -e py-test
style:
name: Style
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: TrueBrain/actions-flake8@master