test(#5): Execute integration tests during CI #2
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
# Run this workflow to test Python code changes. | |
name: 🎨 poe (PR) | |
on: | |
pull_request: | |
paths: | |
- "*" | |
- "**" | |
- "!**/*.py" | |
- "!*.py" | |
- "!.pre-commit-config.yaml" | |
- "!poetry.lock" | |
- "!pyproject.toml" | |
- "!.github/workflows/pr-poe.yaml" | |
- "!.github/actions/poe/*" | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- run: printf "skipping 'poe lint' job (no relevant changes) ✅" | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
py: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- run: printf "skipping 'poe test' job (no relevant changes) ✅" |