run CI for all branches

This commit is contained in:
hrj 2021-04-02 15:32:37 +05:30
parent 87f1bdd72e
commit 5aad8d2135

22
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,22 @@
name: Core CI
on:
push
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.11
uses: actions/setup-java@v1
with:
java-version: 1.11
- name: Run tests
run: sbt test
- name: Run linter
run: sbt "scalafixAll --check"