Skip to content

Commit

Permalink
Updated GHA to run on different OSes
Browse files Browse the repository at this point in the history
  • Loading branch information
ribafish committed Sep 4, 2024
1 parent 87e5fc6 commit d4164d3
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
name: CI
on: [pull_request]
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
Expand Down

0 comments on commit d4164d3

Please sign in to comment.