Skip to content

Commit d2c950a

Browse files
authored
Add CI
1 parent e5233a5 commit d2c950a

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/blank.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ master, c2rust ]
6+
pull_request:
7+
branches: [ master, c2rust ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
15+
- uses: actions/checkout@v2
16+
17+
- name: Build
18+
run: make -j $(nproc)

0 commit comments

Comments
 (0)