Skip to content

Commit 8609985

Browse files
authored
Create ci.yml
1 parent 237f388 commit 8609985

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ master, develop ]
6+
pull_request:
7+
branches: [ master, develop ]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-18.04
12+
13+
steps:
14+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
15+
- uses: actions/checkout@v2
16+
17+
# Runs a single command using the runners shell
18+
- name: Run builder script with arguments `--help`
19+
run: ./build-kernel.sh --help

0 commit comments

Comments
 (0)