Skip to content

Commit

Permalink
ci: add windows build job
Browse files Browse the repository at this point in the history
  • Loading branch information
octocorvus committed Jul 8, 2023
1 parent 2909203 commit e5e7a38
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Build application
on: [pull_request, push]

jobs:
build:
build-linux:
runs-on: ubuntu-latest

steps:
Expand All @@ -20,3 +20,21 @@ jobs:

- name: Build with Gradle
run: ./gradlew build --no-daemon

build-windows:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: npm
- name: Set up JDK 20
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 20
cache: gradle

- name: Build with Gradle
run: ./gradlew.bat build --no-daemon

0 comments on commit e5e7a38

Please sign in to comment.