-
Notifications
You must be signed in to change notification settings - Fork 23
54 lines (47 loc) · 1.15 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
jvm: ['8', '17']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Build
shell: bash -l {0}
run: |
npm ci
test "$OSTYPE" != "msys" || npm run format
npm run all
# create an sbt file to enable sbt caching
- run: echo 'name := "foo"' > build.sbt
- id: cs-setup
uses: ./
with:
jvm: ${{ matrix.jvm }}
apps: sbt sbtn ammonite bloop:1.4.11
# - uses: coursier/cache-action@v5
- run: echo cs-version=${{ steps.cs-setup.outputs.cs-version }}
- run: echo $PATH
# test Java
- run: echo $JAVA_HOME
- run: java -version
- run: cs java -version
# test installed apps
- run: sbtn.bat show name </dev/null
shell: bash
if: runner.os == 'Windows'
- run: sbtn show name
if: runner.os != 'Windows'
- run: amm --help
- run: bloop about