Skip to content

Commit

Permalink
create first revision
Browse files Browse the repository at this point in the history
(cherry picked from commit b8c3293)
  • Loading branch information
benoit-a authored and tcarmet committed Oct 5, 2021
1 parent d2ea6e0 commit f91c1b2
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: C/C++ CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: autogen
run: ./autogen.sh
- name: configure
run: ./configure
- name: make
run: make
- name: make check
run: make check
- name: make test
run: make test

0 comments on commit f91c1b2

Please sign in to comment.