Skip to content
This repository has been archived by the owner on Feb 18, 2025. It is now read-only.

Commit

Permalink
Configure GitHub CI matrix build
Browse files Browse the repository at this point in the history
  • Loading branch information
soc committed Aug 1, 2024
1 parent 581c70f commit 6c1b69c
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,20 @@ on:

jobs:
build:
strategy:
matrix:
os:
- windows-latest
- ubuntu-latest

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

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Run tests
run: sbt test
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Run tests
run: sbt test

0 comments on commit 6c1b69c

Please sign in to comment.