Skip to content

Merge pull request #49 from leigh-hackspace/renovate/poetry-1.x-lockfile #79

Merge pull request #49 from leigh-hackspace/renovate/poetry-1.x-lockfile

Merge pull request #49 from leigh-hackspace/renovate/poetry-1.x-lockfile #79

Workflow file for this run

name: Run Tests
on:
push:
branches:
- "main"
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Test with pytest
run: |
make tests
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Lint with ruff
run: |
make lint