feat: port regex filter plugin to cpex #23
This file contains hidden or 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: CI Plugin Catalog | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "tests/test_plugin_catalog.py" | |
| - "tools/plugin_catalog.py" | |
| - ".github/workflows/ci-plugin-catalog.yaml" | |
| - ".github/workflows/ci-rust-python-package.yaml" | |
| - ".github/workflows/release-rust-python-package.yaml" | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - "tests/test_plugin_catalog.py" | |
| - "tools/plugin_catalog.py" | |
| - ".github/workflows/ci-plugin-catalog.yaml" | |
| - ".github/workflows/ci-rust-python-package.yaml" | |
| - ".github/workflows/release-rust-python-package.yaml" | |
| concurrency: | |
| group: ci-plugin-catalog-${{ github.event.pull_request.head.repo.full_name || github.repository }}-${{ github.head_ref || github.ref_name }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 | |
| - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 | |
| with: | |
| python-version: "3.12" | |
| - name: Run plugin catalog tests | |
| run: python3 -m unittest tests/test_plugin_catalog.py |