Test Python and pip install

This commit is contained in:
2026-03-22 12:50:38 +00:00
parent 6ee0a572d6
commit 82e5e16cb5

View File

@@ -6,5 +6,12 @@ jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Echo test - name: Test Python
run: echo "Hello World" run: |
set -x
python3 --version
pip3 --version
- name: Install pytest
run: |
set -x
pip3 install pytest