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

Commit 7f2c756

Browse files
authored
Merge pull request #163 from exoego/format-job
Use GH actions to speedup CI
2 parents e2d3b74 + cdc89af commit 7f2c756

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

.github/workflows/format.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: CI
2+
on: [pull_request]
3+
jobs:
4+
format:
5+
runs-on: ubuntu-latest
6+
strategy:
7+
fail-fast: false
8+
steps:
9+
- uses: actions/checkout@v1
10+
- uses: olafurpg/setup-scala@v5
11+
- name: Check Scalafmt/Scaladoc
12+
run: sbt ++2.13.1 scalafmtSbtCheck scalafmtCheck test:scalafmtCheck current/doc core/doc

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@ script:
2020

2121
matrix:
2222
include:
23-
- scala: 2.13.1
24-
env: TRAVIS_NODE_VERSION="12.16.1" JOB_NAME="format and doc"
25-
script: sbt ++$TRAVIS_SCALA_VERSION scalafmtSbtCheck scalafmtCheck test:scalafmtCheck current/doc core/doc
2623
- scala: 2.13.1
2724
env: TRAVIS_NODE_VERSION="10.19.0" JOB_NAME="test"
2825
script: sbt ++$TRAVIS_SCALA_VERSION nodejs_v10/test

0 commit comments

Comments
 (0)