Skip to content

Commit

Permalink
Add ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
denis_savitsky committed Jun 25, 2022
1 parent f3de8a7 commit b95435d
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CI

on: [push, pull_request]

jobs:
build:
strategy:
matrix:
scala: [3.1.2]
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
check-latest: true

- name: Coursier cache
uses: coursier/cache-action@v6

- name: Check formatting
run: sbt fixCheck
- name: Compile and test
run: sbt test

ci-passed:
runs-on: ubuntu-latest
needs: build
steps:
- run: ':'

0 comments on commit b95435d

Please sign in to comment.