aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build-linux-cmake.yml
blob: da09711b3e3c0cc6923d32b632261d3b26935070 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: C/C++ CI

on: [push, pull_request]

jobs:
  build:

    runs-on: ubuntu-latest
    
    steps:
    - uses: actions/checkout@v1
      
    - name: cmake
      run: cmake .
      
    - name: make
      run: make