16 lines
341 B
YAML
Raw Normal View History

2023-06-25 18:09:06 +02:00
name: books
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
container: python:3.12.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
- 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 .