(Finally) Seals and charms are now supported, both for filtering and in the importers. Profile editor support is coming soon, see the readme for more information. Make suggestions for improvements. #1663
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: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| concurrency: | |
| group: "${{github.workflow}}-${{github.ref}}" | |
| cancel-in-progress: true | |
| jobs: | |
| tests: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup env | |
| uses: ./.github/actions/setup_env | |
| - name: Run prek | |
| uses: j178/prek-action@v2 | |
| - name: Pytest | |
| shell: powershell | |
| run: pytest . -m "not selenium" -v -n logical | |
| # - name: Pytest selenium | |
| # shell: powershell | |
| # run: pytest . -m "selenium" -v |