This repository has been archived on 2024-02-23. You can view files and clone it, but cannot push or open issues or pull requests.
Auberge_Vagabonde/.gitea/workflows/books.yml

33 lines
825 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 flake8 .
- run: poetry run mypy .
epub:
runs-on: ubuntu-latest
container: python:3.12.2
needs: [lint]
steps:
- run: apt-get update
- run: apt-get install -y git nodejs
- uses: actions/checkout@v4
- uses: Gr1N/setup-poetry@v9
- run: poetry install --without dev
- run: poetry run python books.py
- run: bash -x upload.sh
if: ${{ gitea.ref == 'refs/heads/master' }}
env:
USERNAME: ${{ secrets.USERNAME }}
PASSWORD: ${{ secrets.PASSWORD }}