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 e86ed9c commit d2cc49eCopy full SHA for d2cc49e
.github/workflows/ci.yml
@@ -6,6 +6,9 @@ on:
6
pull_request:
7
branches: [main]
8
9
+env:
10
+ can_submit: ${{ github.event_name == 'push' || github.pull_request.user.login == 'scalacenter' }}
11
+
12
jobs:
13
scalafmt:
14
name: Scalafmt and Scalafix
@@ -43,9 +46,12 @@ jobs:
43
46
jvm: ${{ matrix.jvm }}
44
47
apps: sbt
45
48
- run: sbt test
- - run: sbt scripted
49
+ - run: sbt "scripted dependency-manifest/*"
50
+ - run: sbt "scripted submit-snapshot/*"
51
+ if: github.env.can_submit
52
53
test-action:
54
55
strategy:
56
matrix:
57
os: [ubuntu-latest, macOS-latest, windows-latest]
0 commit comments