chore(deps): update dependency myst-parser to v5 #232
Workflow file for this run
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: Charms Lint and Unit Tests | |
| on: | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| detect-changes: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| charms: ${{ steps.filter.outputs.charms }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dorny/paths-filter@v4 | |
| id: filter | |
| with: | |
| filters: | | |
| charms: | |
| - 'charms/**' | |
| - 'internal/**' | |
| - '.github/workflows/charms_lint_and_unit.yaml' | |
| charm-tests: | |
| needs: detect-changes | |
| if: ${{ needs.detect-changes.outputs.charms == 'true' }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| charm: | |
| - charms/planner-operator | |
| - charms/webhook-gateway-operator | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Install tox | |
| run: uv tool install tox --with tox-uv | |
| - name: Run lint, complexity, static, unit, coverage | |
| working-directory: ${{ matrix.charm }} | |
| run: tox -c tox.toml |