Merge pull request #291 from gdsfactory/gdsfactory7 #1153
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 pre-commit, code and docs | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
- uses: pre-commit/[email protected] | |
test_code: | |
needs: [pre-commit] | |
runs-on: ${{ matrix.os }} | |
strategy: | |
max-parallel: 12 | |
matrix: | |
python-version: ["3.11"] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: "pip" | |
cache-dependency-path: pyproject.toml | |
- name: Install dependencies | |
run: | | |
make dev | |
- name: Test with pytest | |
run: pytest tests/ | |
test_code_coverage: | |
runs-on: ubuntu-latest | |
needs: [pre-commit] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
cache: "pip" | |
cache-dependency-path: pyproject.toml | |
- name: Install dependencies | |
run: | | |
make dev | |
- name: Test with pytest | |
run: | | |
pytest --cov=ubcpdk tests/ | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true | |
test_docs: | |
needs: [pre-commit] | |
runs-on: ${{ matrix.os }} | |
strategy: | |
max-parallel: 12 | |
matrix: | |
python-version: [3.11] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
cache: "pip" | |
cache-dependency-path: pyproject.toml | |
- name: Install dependencies | |
run: | | |
make dev | |
pip freeze > requirements.txt | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: requirements | |
path: requirements.txt | |
- name: Test documentation | |
env: | |
TIDY3D_USER: ${{ secrets.TIDY3D_EMAIL }} | |
TIDY3D_PASS: ${{ secrets.TIDY3D_PASSWORD }} | |
DISPLAY: 1.0 | |
DOCS: True | |
GDSFACTORY_LAYOUT_PLOTTER: klayout | |
run: | | |
mkdir -p $HOME/.tidy3d | |
make docs |