Skip to content

feat: 0.1.1 include Koliseo #4

feat: 0.1.1 include Koliseo

feat: 0.1.1 include Koliseo #4

Workflow file for this run

name: Build CI with make
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Run aclocal
run: aclocal
- name: Run autoconf
run: autoconf
- name: Run automake --add-missing
run: automake --add-missing
- name: Run ./configure
run: ./configure
- name: Run make
run: make
- name: Run make check
run: make check