ci_docker: run smoke tests before building

This commit is contained in:
scito
2022-12-31 19:20:01 +01:00
parent 61cca0c476
commit 965f721caf
2 changed files with 13 additions and 4 deletions

View File

@@ -22,6 +22,15 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3
# avoid building if there are testing errors
- name: Run smoke test
run: |
sudo apt-get install -y libzbar0
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install .
pytest
- name: Set up QEMU
uses: docker/setup-qemu-action@v2