Skip to content

Commit

Permalink
Run CI on more operating systems
Browse files Browse the repository at this point in the history
  • Loading branch information
NeRdTheNed committed Aug 9, 2023
1 parent 24f9e8e commit 1afc8d7
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ on: [ push, pull_request ]
jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]

runs-on: ${{ matrix.os }}

steps:
- name: Checkout repository
Expand All @@ -24,7 +28,7 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: Package
name: Package-${{ matrix.os }}
path: |
JarTighten/build/libs
JarTighten-lib/build/libs
Expand Down

0 comments on commit 1afc8d7

Please sign in to comment.