Skip to content
This repository was archived by the owner on Jul 30, 2024. It is now read-only.

Use GH actions to speedup CI #163

Merged
merged 1 commit into from
Feb 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: CI
on: [pull_request]
jobs:
format:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v1
- uses: olafurpg/setup-scala@v5
- name: Check Scalafmt/Scaladoc
run: sbt ++2.13.1 scalafmtSbtCheck scalafmtCheck test:scalafmtCheck current/doc core/doc
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ script:

matrix:
include:
- scala: 2.13.1
env: TRAVIS_NODE_VERSION="12.16.1" JOB_NAME="format and doc"
script: sbt ++$TRAVIS_SCALA_VERSION scalafmtSbtCheck scalafmtCheck test:scalafmtCheck current/doc core/doc
- scala: 2.13.1
env: TRAVIS_NODE_VERSION="10.19.0" JOB_NAME="test"
script: sbt ++$TRAVIS_SCALA_VERSION nodejs_v10/test
Expand Down