Skip to content

Commit 5daf258

Browse files
committed
Add CI
Signed-off-by: Christopher Crone <[email protected]>
1 parent 7526cfa commit 5daf258

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/main.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
tags:
8+
- '*'
9+
pull_request:
10+
11+
jobs:
12+
validate:
13+
name: validate
14+
runs-on: ubuntu-latest
15+
timeout-minutes: 5
16+
steps:
17+
18+
- name: Checkout
19+
uses: actions/checkout@v2
20+
21+
- name: Lint code
22+
run: DOCKER_BUILDKIT=1 make lint
23+
24+
- name: Check code licenses
25+
run: DOCKER_BUILDKIT=1 make check-license

0 commit comments

Comments
 (0)