diff --git a/.github/workflows/qa.yml b/.github/workflows/qa.yml new file mode 100644 index 0000000..34db9f5 --- /dev/null +++ b/.github/workflows/qa.yml @@ -0,0 +1,30 @@ +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 install nox poetry + - run: pipx inject nox nox-poetry + - run: pipx inject poetry poetry-plugin-export + - run: nox -s tests + + # 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