Skip to content

Commit

Permalink
adding core github workflow action (C CI build)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgaeddert committed Oct 7, 2021
1 parent d4fbce3 commit 5ff5533
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/core.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Core C CI

on:
push:
branches: [ master, github-ci ]
pull_request:
branches: [ master, github-ci ]

jobs:
standard:
strategy:
fail-fast: false
matrix:
runs-on: [ubuntu-latest, macos-latest]

name: "💦 ${{ matrix.runs-on }}"
runs-on: ${{ matrix.runs-on }}

steps:
- uses: actions/checkout@v2
- name: bootstrap
run: ./bootstrap.sh
- name: configure
run: ./configure
- name: make
run: make -j 2
- name: make check
run: make -j 2 check

0 comments on commit 5ff5533

Please sign in to comment.