Skip to content

ci: fixing experimental workflow #3

ci: fixing experimental workflow

ci: fixing experimental workflow #3

Workflow file for this run

name: Python Tests
on:
pull_request:
branches:
- main
- master
- dev
push:
branches-ignore:
- main
- master
- dev
permissions:
contents: read
jobs:
filter:
name: Filter for updated crates and packages
uses: ./.github/workflows/filter.yml
with:
ignore-missing-dev: false
tests:
name: Test | ${{ matrix.package_name }}
needs: filter
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.filter.outputs.py-matrix) }}
runs-on: ubuntu-latest
steps:
- name: Tests
uses: ./github/workflows/py-tests.yml
with:
pkg-dir: ${{ matrix.package_dir }}