Attempt to add forgejo workflow
Some checks failed
CI / test (pull_request) Failing after 3s
CI / test (push) Failing after 4s

This commit is contained in:
Miguel Jacq 2025-11-13 13:51:52 +11:00
parent db0476f9ad
commit ec338562bf
Signed by: mig5
GPG key ID: 59B3F0C24135C6A9

40
.forgejo/workflows/ci.yml Normal file
View file

@ -0,0 +1,40 @@
name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: docker
container:
image: debian:13
options: --privileged
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install system dependencies
run: |
apt-get update
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
python3 python3-venv pipx curl git ca-certificates
- name: Install Poetry
run: |
pipx install poetry==1.8.3
poetry --version
- name: Install project deps (including test extras)
env:
POETRY_VIRTUALENVS_IN_PROJECT: "true"
run: |
poetry install --with test
- name: Run test script
run: |
chmod +x ./tests.sh
./tests.sh