Rewrite freeact on a new modular architecture #266
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: Tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| with: | |
| version: ${{ vars.CI_UV_VERSION }} | |
| enable-cache: true | |
| - name: Install Python | |
| run: uv python install | |
| - name: Install dependencies | |
| run: | | |
| uv sync --locked --all-extras --dev | |
| uv pip list | |
| - name: Run unit tests | |
| run: | | |
| uv run invoke ut | |
| - name: Run integration tests | |
| run: | | |
| uv run invoke it --parallel |