forked from coursier/setup-action
-
Notifications
You must be signed in to change notification settings - Fork 7
56 lines (50 loc) · 1.3 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
55
56
on:
push:
branches:
- main
- update-scala-cli-setup
- create-pull-request/patch
tags:
- "v*"
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
jvm: ['11', 'temurin:17']
steps:
- uses: actions/checkout@v3
- name: Build
shell: bash -l {0}
run: |
nvm use lts/gallium
npm install
npm run all
# create an sbt file to enabling sbt caching
- run: echo 'name := "foo"' > build.sbt
- id: scala-cli-setup
uses: ./
with:
jvm: ${{ matrix.jvm }}
apps: sbt sbtn ammonite bloop:1.4.11
# - uses: coursier/cache-action@v5
- run: echo cs-version=${{ steps.scala-cli-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
- run: echo scala-cli-version=${{ steps.scala-cli-setup.outputs.scala-cli-version }}
- run: scala-cli help
- run: echo 'println("Hello")' | scala-cli -