pilotwings/.gitea/workflows/pilotwings.yml
Michel Roux 12a7ace84b
Some checks failed
pilotwings / python (push) Successful in 1m34s
pilotwings / node (push) Failing after 23s
pilotwings / docker (push) Has been skipped
feat: 👷 add auto build and lint ci system
2024-11-05 15:22:51 +01:00

49 lines
1.3 KiB
YAML

name: pilotwings
on: [push]
jobs:
python:
runs-on: ubuntu-latest
container: python:3.13.0-slim
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 ruff check .
- run: poetry run mypy .
node:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: npm run type-check
- run: npm run lint
docker:
runs-on: ubuntu-latest
container: docker
needs: [python, node]
steps:
- uses: actions/checkout@v4
- uses: docker/metadata-action@v5
id: meta
with:
images: xefir/pilotwings
tags: |
type=schedule
type=ref,event=tag
type=ref,event=pr
type=raw,value=latest,enable={{is_default_branch}}
- uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: docker/build-push-action@v6
with:
push: ${{ gitea.ref_name == gitea.event.repository.default_branch || gitea.ref_type == 'tag' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}