2023-06-25 18:09:06 +02:00
|
|
|
name: books
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
2025-02-12 00:02:11 +00:00
|
|
|
container: python:3.13.2
|
2023-06-25 18:09:06 +02:00
|
|
|
steps:
|
|
|
|
- run: apt-get update
|
|
|
|
- run: apt-get install -y git nodejs
|
2023-09-29 00:31:23 +02:00
|
|
|
- uses: actions/checkout@v4
|
2024-02-18 06:43:45 +00:00
|
|
|
- uses: Gr1N/setup-poetry@v9
|
2023-06-25 18:09:06 +02:00
|
|
|
- run: poetry install
|
2025-02-11 22:43:15 +01:00
|
|
|
- run: poetry run ruff check .
|
2023-06-25 18:09:06 +02:00
|
|
|
- run: poetry run mypy .
|