File tree Expand file tree Collapse file tree 2 files changed +31
-34
lines changed Expand file tree Collapse file tree 2 files changed +31
-34
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
+ build :
11
+ runs-on : ubuntu-latest
12
+ strategy :
13
+ fail-fast : false
14
+ matrix :
15
+ scalaversion : ["2.11.12", "2.12.13", "2.13.4"]
16
+ platform : ["JVM", "JS", "JS-0.6.x", "Native"]
17
+ env :
18
+ SCALAJS_VERSION : " ${{ matrix.platform == 'JS-0.6.x' && '0.6.33' || '' }}"
19
+ PROJECT_NAME : " portable-scala-reflect${{ matrix.platform == 'JS-0.6.x' && 'JS' || matrix.platform }}"
20
+ steps :
21
+ - uses : actions/checkout@v2
22
+ - uses : olafurpg/setup-scala@v10
23
+ with :
24
+ java-version : " adopt@1.8"
25
+ - uses : coursier/cache-action@v5
26
+ - name : Unit tests
27
+ run : sbt "++${{ matrix.scalaversion }}" "${{ env.PROJECT_NAME }}/test"
28
+ - name : Test generate documentation
29
+ run : sbt "++${{ matrix.scalaversion }}" "${{ env.PROJECT_NAME }}/doc"
30
+ - name : MiMa
31
+ run : sbt "++${{ matrix.scalaversion }}" "${{ env.PROJECT_NAME }}/mimaReportBinaryIssues"
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments