We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7526cfa commit 5daf258Copy full SHA for 5daf258
.github/workflows/main.yml
@@ -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