bouquin/.forgejo/workflows/ci.yml
Miguel Jacq 9714b2c742
Some checks failed
CI / test (push) Failing after 1m25s
CI / test (pull_request) Failing after 33s
remove container override
2025-11-13 14:02:46 +11:00

36 lines
761 B
YAML

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: docker
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 nodejs
- 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