Create c-cpp.yml

This commit is contained in:
Lucas Palomo Develop 2023-05-16 18:15:00 +02:00 committed by GitHub
parent 44543717c1
commit 7270ede184
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

29
.github/workflows/c-cpp.yml vendored Normal file
View File

@ -0,0 +1,29 @@
name: C/C++ CI
on:
push:
branches: [ "main", "dev" ]
pull_request:
branches: [ "main", "dev" ]
jobs:
build:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
# - name: configure
# run: ./configure
- name: make
run: make
# - name: make check
# run: make check
# - name: make distcheck
# run: make distcheck