Skip to content

Commit

Permalink
add windows test
Browse files Browse the repository at this point in the history
  • Loading branch information
osiegmar committed Oct 8, 2023
1 parent 23c220d commit f3e0ab4
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: windows

on:
push:
paths-ignore:
- '**/*.md'
pull_request:
paths-ignore:
- '**/*.md'

jobs:
build:

runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- name: Set up Java 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
- uses: gradle/gradle-build-action@v2
- name: Build with Gradle
run: ./gradlew test

0 comments on commit f3e0ab4

Please sign in to comment.