Skip to content

Complete truncated sentences in documentation. (#56) #28

Complete truncated sentences in documentation. (#56)

Complete truncated sentences in documentation. (#56) #28

Workflow file for this run

name: Unit tests
on: [push, workflow_dispatch]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
compiler: ['gcc', 'clang']
exclude:
- os: macos-latest
compiler: gcc # gcc is clang on macOS
runs-on: ${{ matrix.os }}
env:
CC: ${{ matrix.compiler }}
steps:
- uses: actions/checkout@v3
- name: Log compiler version
run: |
"$CC" --version
- name: make test # unit tests
run: make test
- name: make check # unit and compatibility tests
run: make check