Skip to content

Add a Github Actions config #5

Add a Github Actions config

Add a Github Actions config #5

Workflow file for this run

name: Hana CI
permissions:
contents: read
on: [push, pull_request]
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- windows-latest
- ubuntu-latest
- macos-latest
compiler:
- llvm
- gcc
steps:
- name: Setup build environment
uses: aminya/setup-cpp@v1
with:
compiler: ${{ matrix.compiler }}
vcvarsall: ${{ contains(matrix.os, 'windows') }}
cmake: true
ninja: true
- name: Checkout source code
uses: actions/checkout@v3
- name: Configure CMake
run: mkdir build && cmake -S . -B build -G Ninja
- name: Run the tests
run: cmake --build build --target check