We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bd92da commit 4f4a346Copy full SHA for 4f4a346
.github/workflows/ci.yml
@@ -0,0 +1,24 @@
1
+name: test
2
+on:
3
+ push:
4
+ branches:
5
+ - 2.*.x
6
+ pull_request:
7
+jobs:
8
+ test:
9
+ strategy:
10
+ fail-fast: false
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ with:
15
+ fetch-depth: 0
16
+ - uses: coursier/cache-action@v6
17
+ - uses: actions/setup-java@v2
18
19
+ distribution: temurin
20
+ java-version: 8
21
+ - name: Test
22
+ run: |
23
+ git clone -b 2.12.x https://github.com/scala/scala
24
+ sbt -Dfile.encoding=UTF-8 "runMain MakeReleaseNotes 2.12.0 2.12.1 2345/06/07 `pwd`/scala"
.travis.yml
0 commit comments