aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.build.yml
blob: 0644d529d1b3fd7c82f166e0e3fca62f7f3c11c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
image: debian/stable
packages:
  - build-essential
  - clang-format-13
tasks:
  - check-format: |
      cd opendeco
      clang-format-13 -n --Werror src/*.c src/*.h test/*.c
  - build: |
      cd opendeco
      make
  - test: |
      cd opendeco
      make test
artifacts:
  - opendeco/opendeco