Skip to content

Commit

Permalink
Setup Github action for CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
lomigmegard committed Aug 1, 2021
1 parent eec8eba commit c372bb1
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 11 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI
on:
push:
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
java: [ '8', '11' ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Java
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
distribution: 'adopt'
- name: Build and Test
run: sbt -v scalafmtCheckAll +test
11 changes: 0 additions & 11 deletions .travis.yml

This file was deleted.

0 comments on commit c372bb1

Please sign in to comment.