Skip to content

Commit

Permalink
rework github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmipt committed Nov 15, 2024
1 parent 1b71242 commit 3cf1dec
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,13 @@ on:

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest] # Specify OS for the matrix
java-version: [17] # Specify the Java version

runs-on: ubuntu-latest
# runs-on: ubuntu-latest

steps:
- name: Checkout
Expand All @@ -24,8 +29,6 @@ jobs:
java-version: '9'
distribution: 'zulu'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Build with Gradle
run: ./gradlew build
Expand Down

0 comments on commit 3cf1dec

Please sign in to comment.