-
Notifications
You must be signed in to change notification settings - Fork 17
79 lines (74 loc) · 2.02 KB
/
ci.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: Continuous Integration
on:
push:
branches: [main]
tags: ["v*"]
pull_request:
branches: [main]
jobs:
scalafmt:
name: Scalafmt and Scalafix
runs-on: ubuntu-latest
defaults:
run:
working-directory: sbt-plugin
steps:
- uses: actions/checkout@v3
- uses: coursier/[email protected]
with:
apps: scalafmt sbt
- run: scalafmt --test
- run: sbt 'scalafixAll -test'
test-sbt:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
jvm: ['adopt:1.8', 'adopt:1.11', 'temurin:1.17']
fail-fast: false
name: Test sbt plugin on ${{ matrix.os }} - ${{ matrix.jvm }}
runs-on: ${{ matrix.os }}
permissions:
contents: write
defaults:
run:
working-directory: sbt-plugin
env:
GITHUB_TOKEN: ${{ github.token }}
steps:
- uses: actions/checkout@v3
- uses: coursier/[email protected]
with:
jvm: ${{ matrix.jvm }}
apps: sbt
- run: sbt test
- run: sbt scripted
test-action:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
fail-fast: false
name: Test Github action on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- run: sbt publishLocal
working-directory: sbt-plugin
- run: npm version
- run: npm install
- run: npm run all
- name: Run sbt-dependency-submission
uses: ./
id: dependency-submission
with:
working-directory: sbt-plugin
sbt-plugin-version: 2.2.0-SNAPSHOT
- name: Check outputs
run: |
echo ${{ steps.dependency-submission.outputs.submission-id }}
echo ${{ steps.dependency-submission.outputs.submission-api-url }}
echo ${{ steps.dependency-submission.outputs.snapshot-json-path }}
- name: Log snapshot JSON
run: |
cat ${{ steps.dependency-submission.outputs.snapshot-json-path }} | jq