We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89307ee commit bd9df0cCopy full SHA for bd9df0c
.github/workflows/github_lazarus.yml
@@ -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