add-image-resources-to-resource-manager #1269
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: Test | |
on: | |
# Run tests each time a PR is opened or changed. | |
# Allow other Workflows (e.g., build workflows) to call this workflow. | |
pull_request: | |
workflow_call: | |
permissions: read-all | |
jobs: | |
test: | |
name: Execute tests across various operating systems and Python versions. | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
py: ["3.11"] | |
fail-fast: true | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Run Python Tests | |
uses: platomo/test-python-app-action@v1.0.5 | |
timeout-minutes: 60 | |
with: | |
py-version: ${{ matrix.py }} | |
package-path: OTAnalytics | |
test-path: tests |