Skip to content

Commit 6897e3f

Browse files
authored
Update ppaUbuntuLatest.yml
1 parent f3dc731 commit 6897e3f

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

.github/workflows/ppaUbuntuLatest.yml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,20 @@ on: [push, pull_request]
44

55
jobs:
66
build:
7-
runs-on: ubuntu-latest
7+
runs-on: ${{ matrix.os }}
8+
strategy:
9+
matrix:
10+
os: [ubuntu-22.04, ubuntu-24.04]
11+
812
steps:
9-
- uses: actions/checkout@v1
10-
- name: Install PPA and Run a Test
11-
run: sudo chmod +x dicom2mesh/test/test-ppa-dicom2mesh.sh && ./dicom2mesh/test/test-ppa-dicom2mesh.sh
12-
- name: Clean
13-
run: rm *.stl
13+
- uses: actions/checkout@v4
14+
15+
- name: Install PPA and Run a Test
16+
run: |
17+
sudo chmod +x dicom2mesh/test/test-ppa-dicom2mesh.sh
18+
./dicom2mesh/test/test-ppa-dicom2mesh.sh
19+
20+
- name: Clean
21+
run: rm -f *.stl
1422

1523

0 commit comments

Comments
 (0)