fix(facets): filter dynamically library facet #12473
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: CI | |
| on: [push, pull_request, workflow_dispatch] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| dependencies: ['dev', 'deploy'] | |
| steps: | |
| - name: Cancel Previous Runs | |
| uses: styfle/[email protected] | |
| with: | |
| access_token: ${{ github.token }} | |
| - uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '16' | |
| - name: Docker compose up | |
| run: docker compose up -d | |
| - name: Set up Python 3.12 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.12 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Bootstrap | |
| if: ${{ matrix.dependencies == 'dev' }} | |
| run: | | |
| uv run ./scripts/bootstrap --ci --sip2 | |
| - name: Bootstrap deploy | |
| if: ${{ matrix.dependencies == 'deploy' }} | |
| run: | | |
| uv pip list | |
| uv run ./scripts/bootstrap --ci --deploy --sip2 E2E=yes | |
| - name: Run Test | |
| run: | | |
| uv run poe run_tests | |
| - name: Coverage XML | |
| if: ${{ matrix.dependencies == 'dev' }} | |
| run: uv run coverage xml | |
| - name: Coveralls | |
| if: ${{ matrix.dependencies == 'dev' }} | |
| uses: coverallsapp/github-action@v2 | |
| with: | |
| format: cobertura |