Skip to content

update version to v2.4.3 #22

update version to v2.4.3

update version to v2.4.3 #22

Workflow file for this run

name: Build
on:
- push
- pull_request
jobs:
build:
strategy:
matrix:
cc: [/usr/bin/gcc, /usr/bin/clang]
env:
CC: ${{ matrix.cc }}
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Build with make
run: make all tests
- name: Build with cmake
run: |
mkdir build
cd build
cmake ..
make