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

on: [push, pull_request]

jobs:
  build:

    runs-on: ubuntu-latest
    
    steps:
    - uses: actions/checkout@v2
  
    - name: Install Qt
      uses: jurplel/install-qt-action@v2.2.1
      with:
        version: 5.12.6
        
    - name: cmake
      run: cmake .
      
    - name: make
      run: make