ci: pip install six + pytest before make test
Some checks failed
ci / test (push) Failing after 38s

This commit is contained in:
russell 2026-06-22 09:38:43 -04:00
parent a4cacda7c7
commit 8958ac8dab
No known key found for this signature in database

View file

@ -9,7 +9,10 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup python venv prereq
run: apt-get update -qq && apt-get install -y -qq python3-venv
- name: install runtime deps
run: |
apt-get update -qq
apt-get install -y -qq python3-venv
pip install six pytest
- name: test
run: make test