aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.build.yml
blob: 99d052cd04b9ea2e7110dfade61c42ef6c51eae7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
image: debian/stable
packages:
  - build-essential
  - clang-format-13
sources:
  - https://git.sr.ht/~tsegers/opendeco
tasks:
  - check-format: |
      cd opendeco
      clang-format-13 -n --Werror src/*.c src/*.h test/*.c test/*.h
  - build: |
      cd opendeco
      make
  - test: |
      cd opendeco
      make test
artifacts:
  - opendeco/opendeco