Switch from directories to volumes to fix permissions issue. #126
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: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| # Add required configuration with dummy values. | |
| env: | |
| SECRET_KEY: 'a secret to everybody' | |
| SENTRY_DSN: 'dsn_example' | |
| SENTRY_ENABLED: 'False' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v2 | |
| - name: Set up Python | |
| run: uv python install | |
| - name: Install the project | |
| run: uv sync | |
| - name: Run tests | |
| run: make ci |