Skip to content

Bump black from 23.10.0 to 24.3.0 (#98) #14

Bump black from 23.10.0 to 24.3.0 (#98)

Bump black from 23.10.0 to 24.3.0 (#98) #14

Workflow file for this run

name: tornado-sqlalchemy
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- uses: isbang/compose-action@v1.5.1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: poetry install
- name: Lint
run: poetry run task lint
- name: Test
run: poetry run task test