Skip to content

Commit

Permalink
fixup! ci: add GH build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
apotterri committed Oct 7, 2023
1 parent 64737ed commit a172bd4
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,16 @@ on:
jobs:
test:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]

name: Test ${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: 45
steps:
- name: Fetch Sources
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v1
Expand All @@ -27,6 +28,10 @@ jobs:
distribution: temurin
java-version: 17

- name: Install Bash on macOS
if: runner.os == 'macOS'
run: brew install bash

- name: Run Tests
shell: bash
run: ./gradlew -i check integrationTest && bin/test
run: bash --version && ./gradlew -i check integrationTest && bin/test

0 comments on commit a172bd4

Please sign in to comment.