From 7ac1dd1df981d5247248927b1712201dba658084 Mon Sep 17 00:00:00 2001 From: Kieran W <41634689+FredHappyface@users.noreply.github.com> Date: Sat, 30 Mar 2024 15:23:55 +0000 Subject: [PATCH] Create test-lint.yaml --- .github/workflows/test-lint.yaml | 45 ++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/workflows/test-lint.yaml diff --git a/.github/workflows/test-lint.yaml b/.github/workflows/test-lint.yaml new file mode 100644 index 0000000..41b25d7 --- /dev/null +++ b/.github/workflows/test-lint.yaml @@ -0,0 +1,45 @@ +name: Python Test and Lint + +on: + push: + branches: + - '*' + pull_request: + branches: + - main + +jobs: + test: + name: Python Test and Lint + runs-on: ubuntu-latest + + strategy: + matrix: + python-version: + - '3.9' + - '3.10' + - '3.11' + - '3.12' + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + + - name: Install Poetry + run: | + curl -sSL https://install.python-poetry.org | python3 - + + - name: Install dependencies + run: poetry install + + - name: Run pytest + run: poetry run pytest + + - name: Run ruff + run: poetry run ruff check --output-format=github + continue-on-error: true