Skip to content

Commit a548af9

Browse files
author
Francisco Javier Trujillo Mata
committed
Add CI for compile the library
1 parent 00eb9db commit a548af9

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/compilation.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
repository_dispatch:
7+
types: [run_build]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
container: ${{ github.repository_owner }}/gskit:latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
16+
- name: Install dependencies
17+
run: |
18+
apk add build-base git
19+
20+
- name: Compile project
21+
run: |
22+
make clean all install

0 commit comments

Comments
 (0)