Added vcell decorator to path.extrude to avoid None component name. #2
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 PDKs | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: ghcr.io/gdsfactory/gdsfactory:main | |
strategy: | |
fail-fast: false | |
matrix: | |
repo: | |
- { owner: "gdsfactory", repo: "cspdk" } | |
- { owner: "gdsfactory", repo: "skywater130" } | |
- { owner: "gdsfactory", repo: "ubc" } | |
steps: | |
- name: Checkout this repository | |
uses: actions/checkout@v4 | |
- name: Checkout other repository | |
uses: actions/checkout@v4 | |
with: | |
repository: ${{ matrix.repo.owner }}/${{ matrix.repo.repo }} | |
path: other-repo | |
- name: Run tests | |
run: | | |
cd other-repo | |
make install | |
pytest |