Updated Code; Duplex, Simplex #9
Workflow file for this run
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: build | |
on: [ push, pull_request ] | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
compiler: [ clang++, gcc++ ] | |
steps: | |
- name: Add repository | |
run: sudo apt-add-repository -y "ppa:ubuntu-toolchain-r/test" | |
- name: Install packages | |
run: sudo apt install libcups2-dev | |
- uses: actions/checkout@v3 | |
- name: Configure | |
run: cmake . | |
- name: Make | |
run: make | |
env: | |
CXX: ${{ matrix.compiler }} | |
- name: Run tests | |
run: make check | |
macos: | |
runs-on: macos-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
compiler: [ clang++, gcc++ ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Configure | |
run: cmake . | |
- name: Make | |
run: make | |
env: | |
CXX: ${{ matrix.compiler }} | |
- name: Run tests | |
run: make check |