summaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
blob: 6daaa8d71618a98f6aad0f77fc2d1c96af6f1ee4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
name: Build test
'on':
  push:
    branches:
      - main
  pull_request:
    branches:
      - main

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v3

      - name: Install Dependencies
        run:
          sudo apt install
          flex
          libyaml-dev
          pkg-config
          python3-dev
          swig
          valgrind
          bison

      - name: Build
        run: make

      - name: Run check
        run: make check