Fix behavior when closing with unsaved changes #9
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 ] | |
| jobs: | |
| tox: | |
| name: Run Tox | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Run all envs | |
| uses: fedora-python/tox-github-action@main | |
| with: | |
| tox_env: ${{ matrix.tox_env }} | |
| strategy: | |
| matrix: | |
| tox_env: [ py311, py312, py313, lint, check-format, typecheck ] | |
| runs-on: ubuntu-latest |