fix docs #1261
Workflow file for this run
This file contains 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 code | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
cache: "pip" | |
cache-dependency-path: pyproject.toml | |
- name: Test pre-commit hooks | |
run: | | |
python -m pip install --upgrade pip | |
pip install pre-commit | |
pre-commit run -a | |
test_code_pip: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
max-parallel: 12 | |
matrix: | |
plugin: [femwell, gmsh, meow, sax, tidy3d, klayout, vlsir] | |
name: Test ${{ matrix.plugin }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Mambaforge | |
uses: conda-incubator/setup-miniconda@v3 | |
with: | |
miniforge-version: latest | |
activate-environment: env | |
use-mamba: true | |
python-version: "3.11" | |
- name: Add conda to system path | |
run: | | |
echo $CONDA/bin >> $GITHUB_PATH | |
- name: Install uv | |
uses: astral-sh/setup-uv@v4 | |
- name: Install dependencies | |
env: | |
UV_SYSTEM_PYTHON: 1 | |
run: | | |
sudo apt-get install -y libglu1-mesa | |
make uv venv test-data | |
- name: Test with pytest | |
run: | | |
uv pip install .[${{ matrix.plugin }},dev] setuptools | |
uv run pytest gplugins/${{ matrix.plugin }} | |
test_non_pip: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
max-parallel: 2 | |
matrix: | |
os: [ubuntu-latest] | |
plugin: [elmer] | |
name: Test ${{ matrix.plugin }} on ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cache/pip | |
key: ${{ hashFiles('pyproject.toml') }} | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Install dependencies | |
run: | | |
make uv venv gmsh | |
make ${{ matrix.plugin }} | |
uv pip install -e .[dev,gmsh] | |
- name: Test with pytest | |
run: uv run pytest gplugins/${{ matrix.plugin }} | |
test_code_coverage: | |
runs-on: ubuntu-latest | |
container: ghcr.io/gdsfactory/gdsfactory:main | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
make uv | |
make install | |
- name: Run tests | |
env: | |
SIMCLOUD_APIKEY: ${{ secrets.SIMCLOUD_APIKEY }} | |
GDSFACTORY_DISPLAY_TYPE: klayout | |
run: | | |
uv run pytest --cov=gplugins | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: false |