Gather the results from each thread *after* the thread finishes #1118
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: [push] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
version: ['Release', 'Debug'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies (Ubuntu) | |
if: runner.os == 'Linux' | |
run: sudo apt-get install libsqlite3-dev | |
- name: Install dependencies (macOS) | |
if: runner.os == 'macOS' | |
run: brew install sqlite3 | |
- run: uname -a; BUILDTYPE=${{ matrix.version }} make | |
- run: make test |