Skip to content

Commit 0b1dedf

Browse files
committed
gh-actions: fixes
1 parent 9db3473 commit 0b1dedf

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/run-tests.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,19 @@ jobs:
88
matrix:
99
os: [ubuntu-latest, macos-latest, macos-13, windows-latest]
1010
steps:
11-
- uses: actions/checkout@v1
11+
- uses: actions/checkout@v4
1212

1313
- name: make run
1414
run: make run CFLAGS=-fPIC
1515

16+
- name: lipo
17+
if: startsWith(matrix.os, 'macos')
18+
run: |
19+
lipo -info ./lib/k08.a
20+
shasum -a 256 ./lib/k08.a
21+
1622
- name: make valgrind
17-
if: matrix.os == 'ubuntu-20.04'
23+
if: matrix.os == 'ubuntu-latest'
1824
run: |
1925
sudo apt install valgrind
2026
make valgrind CFLAGS=-fPIC

0 commit comments

Comments
 (0)