Skip to content

Merge branch 'main' of https://github.com/BachiLi/lajolla_public into… #21

Merge branch 'main' of https://github.com/BachiLi/lajolla_public into…

Merge branch 'main' of https://github.com/BachiLi/lajolla_public into… #21

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
name: ${{ matrix.os }}-${{ github.workflow }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
include:
- os: windows-latest
triplet: x64-windows
- os: ubuntu-latest
triplet: x64-linux
- os: macos-latest
triplet: x64-osx
steps:
- uses: actions/checkout@v3
- name: configure
run: mkdir build; cd build; cmake ..
- name: make
run: cd build; cmake --build . -j -v
- name: test
run: cd build; ctest