Skip to content

cfgen: comment on source of the rules #121

cfgen: comment on source of the rules

cfgen: comment on source of the rules #121

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build and test repo
runs-on: ubuntu-latest
strategy:
matrix:
include:
- cc: gcc
cxx: g++
- cc: clang
cxx: clang++
env:
CC: ${{ matrix.cc }}
CXX: ${{ matrix.cxx }}
steps:
- run: sudo apt-get update
- name: Install dependencies
run: >
sudo apt-get install
pkg-config
libsystemd-dev
libjsoncpp-dev
googletest
meson
g++
- name: Checkout code
uses: actions/checkout@v2
- run: meson build/
- run: ninja -C build/
- run: ninja -C build/ test