Skip to content

Commit bd9df0c

Browse files
add: github workflow
1 parent 89307ee commit bd9df0c

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: build-test
2+
3+
on:
4+
pull_request:
5+
push:
6+
paths-ignore:
7+
- "README.md"
8+
9+
jobs:
10+
build:
11+
runs-on: ${{ matrix.operating-system }}
12+
strategy:
13+
matrix:
14+
operating-system: [ubuntu-18.04,windows-latest]
15+
lazarus-versions: [2.0.8]
16+
steps:
17+
- uses: actions/checkout@v2
18+
- name: Install Lazarus
19+
uses: gerryferdinandus/[email protected]
20+
with:
21+
lazarus-version: ${{ matrix.lazarus-versions }}
22+
- name: Build the Main Application
23+
run: lazbuild --build-mode=Release "source/project/tracker_editor/trackereditor.lpi"
24+
- name: Build the Unit Tests Application
25+
run: lazbuild --build-mode=Debug "source/project/unit_test/tracker_editor_test.lpi"

0 commit comments

Comments
 (0)