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
Michel Roux d26b041ca2
All checks were successful
books / lint (push) Successful in 1m44s
books / epub (push) Successful in 3m31s
Update actions
2023-09-29 00:31:23 +02:00

33 lines
825 B
YAML

name: books
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
container: python:3.11.5
steps:
- run: apt-get update
- run: apt-get install -y git nodejs
- uses: actions/checkout@v4
- uses: Gr1N/setup-poetry@v8
- run: poetry install
- run: poetry run flake8 .
- run: poetry run mypy .
epub:
runs-on: ubuntu-latest
container: python:3.11.5
needs: [lint]
steps:
- run: apt-get update
- run: apt-get install -y git nodejs
- uses: actions/checkout@v4
- uses: Gr1N/setup-poetry@v8
- 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 }}