Files
confsync/.gitea/workflows/ci.yml
7000pctAUTO c9fe8a4441
Some checks failed
CI / test (push) Failing after 34s
fix: CI with apt-get first
2026-02-04 20:55:36 +00:00

20 lines
513 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Clone
run: git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/confsync.git .
- name: Setup
run: |
apt-get update
apt-get install -y python3 python3-pip git
python3 --version
pip3 --version
- name: Install
run: pip3 install pytest
pip3 list | grep pytest
- name: Test
run: echo "Install successful"