33 lines
596 B
YAML
33 lines
596 B
YAML
# SPDX-FileCopyrightText: 2022 stenc authors
|
|
#
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
name: C/C++ CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
#install pandoc
|
|
- name: Install pandoc package
|
|
run: |
|
|
sudo apt-get -y install pandoc
|
|
- name: autoconf
|
|
run: autoreconf -i
|
|
- name: configure
|
|
run: ./configure
|
|
- name: make
|
|
run: make
|
|
- name: make check
|
|
run: make check
|
|
- name: make distcheck
|
|
run: make distcheck
|