Skip to content

Bump actions/checkout from 6 to 7 #127

Bump actions/checkout from 6 to 7

Bump actions/checkout from 6 to 7 #127

Workflow file for this run

name: C/C++ CI
on: [ push, pull_request ]
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ macos-latest, ubuntu-24.04-arm, ubuntu-latest ]
steps:
- name: Set up build environment (Linux)
run: |
sudo apt-get update
sudo apt-get install check
if: runner.os == 'Linux'
- name: Set up build environment (macOS)
run: |
brew update
brew install check pkg-config
if: runner.os == 'macOS'
- uses: actions/checkout@v7
- name: Build
run: make
- name: Unit tests
run: |
make clean
make units UNITS=1
./test/units.sh