ci: execute tests after successful build (#243)

This commit is contained in:
Tobias Heider 2023-09-04 15:53:10 +02:00 committed by GitHub
parent 1e1268d2de
commit da3c493d2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,6 +25,9 @@ jobs:
- name: Build
run: make
- name: Tests
run: make tests
openbsd:
runs-on: macos-12
steps:
@ -46,6 +49,12 @@ jobs:
echo "building"
make
- name: Tests
run: |
ulimit -n 1024
cd build
make tests
freebsd:
runs-on: macos-12
steps:
@ -67,6 +76,11 @@ jobs:
echo "building"
make
- name: Tests
run: |
cd build
make tests
netbsd:
runs-on: macos-12
steps:
@ -84,3 +98,8 @@ jobs:
./configure --prefix=/usr
echo "building"
make
- name: Tests
run: |
cd build
make tests