dl/.gitea/workflows/dl.yml

38 lines
1022 B
YAML
Raw Normal View History

2023-06-25 09:37:42 +00:00
name: dl
on: [push]
jobs:
lint:
2023-06-25 10:30:44 +00:00
runs-on: ubuntu-latest
2023-06-25 15:13:47 +00:00
container: python:3.10
2023-06-25 09:37:42 +00:00
steps:
2023-06-25 15:13:47 +00:00
- run: apt-get update
- run: apt-get install -y git nodejs
2023-06-25 09:37:42 +00:00
- uses: actions/checkout@v3
2023-06-25 09:49:15 +00:00
- uses: https://github.com/Gr1N/setup-poetry@v8
2023-06-25 13:18:54 +00:00
- run: poetry install
2023-06-25 09:37:42 +00:00
- run: poetry run flake8 .
- run: poetry run mypy .
docker:
runs-on: ubuntu-latest
2023-06-25 13:37:51 +00:00
container: docker
2023-06-25 09:42:18 +00:00
needs: [lint]
2023-06-25 09:37:42 +00:00
steps:
2023-06-25 13:51:45 +00:00
- run: apk add git nodejs
2023-06-25 13:43:17 +00:00
- uses: actions/checkout@v3
2023-06-25 09:42:18 +00:00
- uses: https://github.com/docker/metadata-action@v4
2023-06-25 14:05:01 +00:00
id: meta
2023-06-25 09:37:42 +00:00
with:
2023-06-25 13:54:23 +00:00
images: xefir/dl
2023-06-25 14:05:01 +00:00
flavor: latest=true
2023-06-25 09:42:18 +00:00
- uses: https://github.com/docker/login-action@v2
2023-06-25 09:37:42 +00:00
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
2023-06-25 09:42:18 +00:00
- uses: https://github.com/docker/build-push-action@v4
2023-06-25 09:37:42 +00:00
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}