From c657ce46923875505201f9c6fa5be59389db8b38 Mon Sep 17 00:00:00 2001 From: Jean-Marc Fontaine Date: Sat, 6 Apr 2024 19:45:21 +0000 Subject: [PATCH] Add QA GitHub Actions workflow --- .github/workflows/qa.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/qa.yml diff --git a/.github/workflows/qa.yml b/.github/workflows/qa.yml new file mode 100644 index 0000000..8e7b68d --- /dev/null +++ b/.github/workflows/qa.yml @@ -0,0 +1,26 @@ +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