Skip to content

Commit

Permalink
Add Actions to GitHub for CI/CD (#16)
Browse files Browse the repository at this point in the history
* Create c-cpp.yml

Testing Actions for CI/CD

* Create c-cpp.yml

Testing Actions for CI/CD

* Delete .github/workflows   directory

* Update c-cpp.yml

Add autogen.sh to actions

* Update c-cpp.yml for all branches/pull_requests
  • Loading branch information
dgtlrift authored May 12, 2023
1 parent 927abaf commit b053cbe
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: C/C++ CI

on:
push:
pull_request:

jobs:
build:

runs-on: ubuntu-latest

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

0 comments on commit b053cbe

Please sign in to comment.