forked from acts-project/acts
-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (44 loc) · 1.04 KB
/
checks.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
name: Checks
on:
push:
pull_request:
branches:
- master
- 'release/**'
jobs:
format:
runs-on: ubuntu-latest
container: gitlab-registry.cern.ch/acts/machines/format8:v3
steps:
- uses: actions/checkout@v2
- name: Check
run: CI/check_format .
- uses: actions/upload-artifact@v1
if: failure()
with:
name: changed
path: changed
license:
runs-on: ubuntu-latest
container: python:alpine3.6
steps:
- uses: actions/checkout@v2
- name: Check
run: >
apk add --no-cache git
&& CI/check_license.py . --exclude "*thirdparty/*"
include_guards:
runs-on: ubuntu-latest
container: python:alpine3.6
steps:
- uses: actions/checkout@v2
- name: Check
run: >
CI/check_include_guards.py . --fail-global --exclude "*thirdparty/*"
boost_test_macro:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Check
run: >
CI/check_boost_test_macro.sh