File tree Expand file tree Collapse file tree 2 files changed +30
-31
lines changed Expand file tree Collapse file tree 2 files changed +30
-31
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on :
3
+ push :
4
+ branches :
5
+ - master
6
+ pull_request :
7
+ branches :
8
+ - master
9
+ jobs :
10
+ test :
11
+ runs-on : ubuntu-latest
12
+ strategy :
13
+ fail-fast : false
14
+ matrix :
15
+ scalaversion : ["2.11.12", "2.12.11", "2.13.2"]
16
+ project : ["scalajs-js-envs", "scalajs-js-envs-test-kit", "scalajs-env-nodejs"]
17
+ steps :
18
+ - uses : actions/checkout@v2
19
+ - uses : olafurpg/setup-scala@v10
20
+ with :
21
+ java-version : " adopt@1.8"
22
+ - uses : coursier/cache-action@v5
23
+ - name : Test
24
+ run : sbt "++${{ matrix.scalaversion }}" ${{ matrix.project }}/test
25
+ - name : Doc generation
26
+ run : sbt "++${{ matrix.scalaversion }}" ${{ matrix.project }}/doc
27
+ - name : MiMa
28
+ run : sbt "++${{ matrix.scalaversion }}" ${{ matrix.project }}/mimaReportBinaryIssues
29
+ - name : Header check
30
+ run : sbt "++${{ matrix.scalaversion }}" ${{ matrix.project }}/headerCheck ${{ matrix.project }}/test:headerCheck
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments