Use python3 -m pip explicitly
Some checks failed
CI / test (push) Failing after 1s

This commit is contained in:
2026-02-01 05:24:02 +00:00
parent 1e99bfeaa5
commit c5e9ecb5b1

View File

@@ -7,8 +7,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
run: git clone https://gitea.com/7000pctAUTO/json-to-openapi .
run: |
git clone https://gitea.com/7000pctAUTO/json-to-openapi .
- name: Install
run: pip install -e . pytest
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -e .
python3 -m pip install pytest
- name: Test
run: pytest tests/ -v
run: python3 -m pytest tests/ -v