feat: Unit tests for serialize_v1 for folders #23
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run unit tests | |
on: | |
pull_request: | |
branches: [main] | |
types: [opened, synchronize] | |
permissions: {} | |
jobs: | |
model-signing-unit-tests: | |
name: Run unit tests for signing | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1 | |
with: | |
python-version: 3.11 | |
cache: pip | |
cache-dependency-path: | | |
model_signing/install/requirements.txt | |
model_signing/install/requirements.test.txt | |
- name: Install dependencies | |
run: | | |
set -euo pipefail | |
python -m venv venv | |
source venv/bin/activate | |
python -m pip install --require-hashes -r model_signing/install/requirements.txt | |
python -m pip install --require-hashes -r model_signing/install/requirements.test.txt | |
- name: Run unit tests | |
run: | | |
set -euo pipefail | |
source venv/bin/activate | |
# NOTE: option --full-trace may be useful for troubleshooting. | |
pytest -v . |