summaryrefslogblamecommitdiffstats
path: root/.github/workflows/c-cpp.yml
blob: ee86ddef4dc4c2464be9e1486b0592730bc789b3 (plain) (tree)























                                                                 
name: C/C++ CI

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

  # Allows you to run this workflow manually from the Actions tab
  workflow_dispatch:

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: make clean
      run: make clean
    - name: make
      run: make
    - name: make test
      run: make test