16 lines
341 B
YAML
16 lines
341 B
YAML
name: books
|
|
on: [push]
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
container: python:3.12.2
|
|
steps:
|
|
- run: apt-get update
|
|
- run: apt-get install -y git nodejs
|
|
- uses: actions/checkout@v4
|
|
- uses: Gr1N/setup-poetry@v9
|
|
- run: poetry install
|
|
- run: poetry run ruff check .
|
|
- run: poetry run mypy .
|