Skip to content

Commit 8a7bfcc

Browse files
authored
Add a CI build workflow action
1 parent a691089 commit 8a7bfcc

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: OnScreenProgramming CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ${{ matrix.os }}
13+
strategy:
14+
matrix:
15+
os: [ ubuntu-latest ]
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: apt-get update
20+
run: sudo apt-get --assume-yes update
21+
- name: install build dependencies
22+
run: sudo apt-get --assume-yes install binutils-h8300-hms gcc-h8300-hms
23+
- name: make
24+
run: make

0 commit comments

Comments
 (0)