Adding classifier mode changes for file type storage #1132
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
# If you change this name also do it in tests_skipper.yml | |
name: Tests | |
on: | |
workflow_dispatch: # Activate this workflow manually | |
push: | |
branches: | |
- main | |
# release branches have the form v1.9.x | |
- "v[0-9].*[0-9].x" | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
paths: | |
- "pebblo/**/*.py" | |
- "pebblo/**/*.txt" | |
- "tests/**/*.py" | |
- "pyproject.toml" | |
jobs: | |
RunUnitTests: | |
strategy: | |
matrix: | |
python_version: ["3.9", "3.10", "3.11", "3.12.3", "3.12.5"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python_version }} | |
- name: Install the dependencies needed for tests | |
run: pip install --no-cache-dir -r tests/test_requirements.txt | |
- name: Run Unit Tests | |
run: make test |