forked from Patater/manual-git
-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (36 loc) · 916 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Build code for each chapter
on:
push:
branches: []
pull_request:
jobs:
build:
runs-on: ubuntu-latest
container: skylyrac/blocksds:slim-latest
steps:
- name: Checkout master
uses: actions/checkout@master
- name: Build Template
run: |
make -C code/template
- name: Build Chapter 0
run: |
make -C code/chapter_0-starting_system
- name: Build Chapter 5
run: |
make -C code/chapter_5-backgrounds
- name: Build Chapter 6
run: |
make -C code/chapter_6-sprites
- name: Build Chapter 7
run: |
make -C code/chapter_7-game
- name: Build Chapter 8
run: |
make -C code/chapter_8-input
- name: Build Chapter 9
run: |
make -C code/chapter_9-sounds
- name: Build All
run: |
make -C code