Skip to content

Commit 4f4a346

Browse files
authored
bye bye Travis-CI, hello GitHub Actions (#431)
1 parent 3bd92da commit 4f4a346

File tree

2 files changed

+24
-13
lines changed

2 files changed

+24
-13
lines changed

.github/workflows/ci.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
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

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)