forked from gdsfactory/gdsfactory
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (33 loc) · 853 Bytes
/
test_pdks.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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