Skip to content

add-image-resources-to-resource-manager #1269

add-image-resources-to-resource-manager

add-image-resources-to-resource-manager #1269

Workflow file for this run

---
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