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: Check Python run: | which python3 python3 --version which pip3 pip3 --version - name: Install run: | pip3 install pytest pytest --version - name: Test run: pytest confsync/tests/ -v || true