Skip to content

Add QA GitHub Actions workflow #1

Add QA GitHub Actions workflow

Add QA GitHub Actions workflow #1

Workflow file for this run

name: QA
on: push
jobs:
tests:
runs-on: ubuntu-latest
# strategy:
# matrix:
# python-version: ["3.10", "3.11", "3.12"]
# name: Python ${{ matrix.python-version }}
name: Python 3.10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
architecture: x64
- run: pipx
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-python@v5
# with:
# python-version: ${{ matrix.python-version }}
# architecture: x64
# - run: pip install nox
# - run: pip install poetry
# - run: nox -s tests