Skip to content

tasks: add property tests #11

tasks: add property tests

tasks: add property tests #11

Workflow file for this run

name: "PR Test"
on:
pull_request:
paths-ignore:
- "docs/**"
- "mkdocs.yml"
- "requirements.in"
- "requirements.txt"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
pipeline:
strategy:
fail-fast: false
matrix:
include:
- system: aarch64-linux
runs-on: '["self-hosted", "linux", "ARM64"]'
- system: x86_64-linux
runs-on: '["self-hosted", "linux", "X64"]'
- system: aarch64-darwin
runs-on: '["self-hosted", "macOS", "ARM64"]'
- system: x86_64-darwin
runs-on: '["macos-13"]'
uses: ./.github/workflows/per-system-pipeline.yml
secrets: inherit
with:
system: ${{ matrix.system }}
runs-on: ${{ matrix.runs-on }}