Skip to content

Commit

Permalink
chore: add ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vil02 committed Jan 20, 2024
1 parent 51b0b36 commit a01cb65
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
name: ci

# yamllint disable-line rule:truthy
on:
workflow_dispatch:
push:
branches:
- main
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]

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 a01cb65

Please sign in to comment.