Add grades_summary.json data #20
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: Build and Verify | |
| on: | |
| push: | |
| branches: [ main, refactor/project-structure ] | |
| pull_request: | |
| branches: [ main, refactor/project-structure ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| cache-dependency-glob: "uv.lock" | |
| - name: Set up Python | |
| run: uv python install | |
| - name: Install the project | |
| run: uv sync --locked | |
| - name: Build package | |
| run: uv build | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: dist | |
| path: dist/ | |
| - name: Smoke test - List plans | |
| run: uv run hoa plans | |
| - name: Smoke test - List courses | |
| run: uv run hoa courses 037F075E27C4138CE0630B18F80A5AFE | |
| - name: Smoke test - Get course info | |
| run: uv run hoa info 037F075E27C4138CE0630B18F80A5AFE COMP3010E |