pyupgrade to 3.14 #57
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: Test | |
| on: | |
| push: | |
| branches: [master] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-python@v4 | |
| - uses: abatilo/actions-poetry@v2 | |
| - name: Install dependencies | |
| run: | | |
| poetry --directory code install --all-extras --with dev | |
| pip install poethepoet | |
| - name: Lint | |
| run: poe --root code lint | |
| - name: Test | |
| run: poe --root code test |