- Fix registry URL format for Forgejo (host:port/owner/repo) - Create deploy-forgejo.sh with correct env variables - Rename CI variables from GitLab CI format to Forgejo/GitHub format - Simplify workflow structure - Add proper error handling in deploy script - Fix SSH key permissions (chmod 600) - Add ssh-keyscan to avoid StrictHostKeyChecking issues
54 lines
1.2 KiB
YAML
54 lines
1.2 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
env:
|
|
PIP_CACHE_DIR: ${{ github.workspace }}/.cache/pip
|
|
PYTHONUNBUFFERED: "1"
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: docker
|
|
container:
|
|
image: python:3.12-slim
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install ruff black
|
|
- name: Run ruff
|
|
run: ruff check app tests scripts
|
|
- name: Run black
|
|
run: black --check app tests scripts
|
|
|
|
test:
|
|
runs-on: docker
|
|
container:
|
|
image: python:3.12-slim
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -r requirements-dev.txt
|
|
- name: Run tests
|
|
run: pytest -q tests -v
|
|
|
|
type-check:
|
|
runs-on: docker
|
|
container:
|
|
image: python:3.12-slim
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install mypy
|
|
pip install -r requirements.txt
|
|
- name: Run mypy
|
|
run: mypy app scripts --ignore-missing-imports |