-
Notifications
You must be signed in to change notification settings - Fork 57
55 lines (53 loc) · 1.47 KB
/
ci.yml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: CI
on: [push]
jobs:
build_and_test_ubuntu:
name: Build/Test [Ubuntu]
runs-on: ubuntu-22.04
container:
image: paradajz168/opendeck-dev:latest
options: --user root
steps:
- name: Mark repository as safe
run: git config --global --add safe.directory /__w/OpenDeck/OpenDeck
- name: Pull the repository and submodules
uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: recursive
- name: Build and test targets
run: |
git fetch --tags
./scripts/build_targets.sh --type=test
format:
name: Code formatting
runs-on: ubuntu-22.04
container:
image: paradajz168/opendeck-dev:latest
options: --user root
steps:
- name: Mark repository as safe
run: git config --global --add safe.directory /__w/OpenDeck/OpenDeck
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: recursive
- name: Check formatting
run: |
make format
lint:
name: Code linting
runs-on: ubuntu-22.04
container:
image: paradajz168/opendeck-dev:latest
options: --user root
steps:
- name: Mark repository as safe
run: git config --global --add safe.directory /__w/OpenDeck/OpenDeck
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: recursive
- name: Lint
run: |
./scripts/build_targets.sh --type=lint