dl/.gitea/workflows/dl.yml
Michel Roux 808cdb92a7
Some checks failed
dl / lint (push) Failing after 12s
dl / docker (push) Has been skipped
test
2023-06-25 12:30:44 +02:00

34 lines
930 B
YAML

name: dl
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- run: cat /etc/lsb-release
- run: cat /etc/os-release
- uses: actions/checkout@v3
- uses: https://github.com/actions/setup-python@v4
with:
python-version: 3.10
- uses: https://github.com/Gr1N/setup-poetry@v8
- run: poetry run flake8 .
- run: poetry run mypy .
docker:
runs-on: ubuntu-latest
needs: [lint]
steps:
- uses: https://github.com/docker/metadata-action@v4
with:
images: dl/xefir
- uses: https://github.com/docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: https://github.com/docker/build-push-action@v4
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}