new overview figure #58
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: | |
| jobs: | |
| linting-and-testing: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: [3.9, 3.13] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # Viewer build | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| cache-dependency-path: viewer/package-lock.json | |
| - name: Install viewer dependencies | |
| run: npm ci | |
| working-directory: viewer | |
| - name: Build viewer | |
| run: npm run build | |
| working-directory: viewer | |
| # Python setup | |
| - name: Install uv and set python version to ${{ matrix.python-version }} | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| enable-cache: true | |
| - name: Install hatch-vcs plugin | |
| run: uv pip install hatch-vcs | |
| - name: Install dependencies | |
| run: uv pip install -e ".[dev,sil,vis]" | |
| # type checking | |
| - name: Run type checker | |
| run: uv run mypy vessim | |
| # linting | |
| - name: Run linter | |
| run: uv run ruff check vessim | |
| # unit-testing | |
| - name: Run tests | |
| run: uv run pytest |