Add soiling notebooks to docs (#51) #149
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: | |
| build: | |
| strategy: | |
| matrix: | |
| os: ["ubuntu-latest", "macos-14", "windows-latest"] | |
| python-version: ["3.8", "3.11"] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| - name: Install dependencies with uv | |
| run: | | |
| uv python install ${{ matrix.python-version }} | |
| uv sync --python ${{ matrix.python-version }} --extra all --all-groups | |
| - name: Test with pytest | |
| env: | |
| SOLCAST_API_KEY: ${{ secrets.SOLCAST_API_KEY }} | |
| run: | | |
| uv run --python ${{ matrix.python-version }} --group test pytest tests |