Skip to content

Commit f591bcb

Browse files
committed
Build workflow
1 parent 12604f6 commit f591bcb

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Build FIS-GUI
2+
3+
on:
4+
push:
5+
pull_request:
6+
branches: [ "master", "develop" ]
7+
8+
jobs:
9+
build:
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- uses: actions/setup-java@v4
17+
with:
18+
distribution: 'temurin'
19+
java-version: '21'
20+
cache: 'maven'
21+
22+
- name: Build FIS-GUI
23+
run: make install

0 commit comments

Comments
 (0)