Bump the uv-dependencies group with 4 updates (#28) #119
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: TOML Formatting | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| tomlsort: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version-file: .python-version | |
| - name: Install Dependencies | |
| run: make install | |
| - name: Test Typing | |
| run: make tomlsort_check |