Files
snippet-manager/.gitea/workflows/ci.yml
7000pctAUTO 82e5e16cb5
Some checks failed
CI / test (push) Failing after 2s
Test Python and pip install
2026-03-22 12:50:38 +00:00

17 lines
273 B
YAML

name: CI
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Test Python
run: |
set -x
python3 --version
pip3 --version
- name: Install pytest
run: |
set -x
pip3 install pytest