Skip to content

Bump actions/checkout from 3 to 4 #26

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #26

Workflow file for this run

name: CI
on: [push, pull_request]
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest]
compiler: [gcc, clang]
exclude:
- os: macos-latest
compiler: gcc
env:
CC: ${{ matrix.compiler }}
steps:
- uses: actions/checkout@v4
- name: configure
run: ./configure --enable-warnings
- name: make
run: make -j$(nproc)
- name: make install
run: sudo make install