Add task aliases in mise.toml #145
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: Format, Lint, and Test | |
| on: | |
| workflow_call: | |
| push: | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: | |
| - "3.14" | |
| - "3.13" | |
| - "3.12" | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: jdx/mise-action@v4 | |
| with: | |
| tool_versions: | | |
| python ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: mise run install | |
| - name: Format and lint | |
| run: mise run lint | |
| - name: Run tests | |
| run: mise run test |