We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3dc731 commit 6897e3fCopy full SHA for 6897e3f
.github/workflows/ppaUbuntuLatest.yml
@@ -4,12 +4,20 @@ on: [push, pull_request]
4
5
jobs:
6
build:
7
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
8
+ strategy:
9
+ matrix:
10
+ os: [ubuntu-22.04, ubuntu-24.04]
11
+
12
steps:
- - uses: actions/checkout@v1
- - name: Install PPA and Run a Test
- run: sudo chmod +x dicom2mesh/test/test-ppa-dicom2mesh.sh && ./dicom2mesh/test/test-ppa-dicom2mesh.sh
- - name: Clean
13
- run: rm *.stl
+ - 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
22
23
0 commit comments