This repository was archived by the owner on Feb 5, 2026. It is now read-only.
enable uv trace log and add more details to README #2
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 mise | |
| on: | |
| push: | |
| branches: [main] | |
| env: | |
| RUST_LOG: trace | |
| jobs: | |
| test: | |
| name: Test mise with uv and automatic virtualenv activation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| with: | |
| enable-cache: true | |
| - name: Install mise | |
| uses: jdx/mise-action@v2 | |
| with: | |
| cache: true | |
| - run: which python | |
| - run: python --version |