Skip to content

Commit

Permalink
Merge pull request #85 from vil02/add_ci
Browse files Browse the repository at this point in the history
chore: add `ci.yml`
  • Loading branch information
StepfenShawn authored Oct 6, 2024
2 parents 51b0b36 + c29bcc0 commit de55534
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
name: ci

'on':
workflow_dispatch:
push:
branches:
- master
pull_request:

jobs:
run_tests:
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-22.04
- macos-12
- windows-2022
java-version: [11, 16, 17]

steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{matrix.java-version}}

- name: Run tests
run: |
sbt test
...

0 comments on commit de55534

Please sign in to comment.