Skip to content

Bump ruff from 0.4.2 to 0.4.3 #8

Bump ruff from 0.4.2 to 0.4.3

Bump ruff from 0.4.2 to 0.4.3 #8

name: Lint and Test
on:
pull_request:
push:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.12
- uses: pre-commit/[email protected]
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v2
- name: Install dependencies
run: poetry install --with=dev
- name: Run tests
run: poetry run pytest