-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e264d0f
commit cc01382
Showing
10 changed files
with
58 additions
and
104 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
version: 3 | ||
|
||
# https://github.com/fossas/fossa-cli/blob/master/docs/references/files/fossa-yml.md | ||
|
||
paths: | ||
exclude: | ||
- ./example | ||
- ./dse-test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,8 +22,8 @@ jobs: | |
steps: | ||
- name: Checkout | ||
# https://github.com/actions/checkout/releases | ||
# v3.3.0 | ||
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c | ||
# v4.1.1 | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | ||
with: # https://github.com/olafurpg/setup-scala#faster-checkout-of-big-repos | ||
fetch-depth: 0 | ||
|
||
|
@@ -32,13 +32,15 @@ jobs: | |
|
||
- name: Set up JDK 11 | ||
# https://github.com/coursier/setup-action/releases | ||
# v1.3.0 | ||
uses: coursier/setup-action@70323223454ac2a9eb2de46f389b4d045cbcdea5 | ||
# v1.3.5 | ||
uses: coursier/setup-action@7bde40eee928896f074dbb76d22dd772eed5c65f | ||
with: | ||
jvm: temurin:1.11 | ||
|
||
- name: Cache Coursier cache | ||
uses: coursier/[email protected] | ||
# https://github.com/coursier/cache-action/releases | ||
# v6.4.5 | ||
uses: coursier/cache-action@1ff273bff02a8787bc9f1877d347948af647956d | ||
|
||
- name: "Code style, compile tests" | ||
run: sbt "verifyCodeStyle; +Test/compile" | ||
|
@@ -54,8 +56,8 @@ jobs: | |
steps: | ||
- name: Checkout | ||
# https://github.com/actions/checkout/releases | ||
# v3.3.0 | ||
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c | ||
# v4.1.1 | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | ||
with: # https://github.com/olafurpg/setup-scala#faster-checkout-of-big-repos | ||
fetch-depth: 100 | ||
|
||
|
@@ -64,15 +66,15 @@ jobs: | |
|
||
- name: Set up JDK 11 | ||
# https://github.com/coursier/setup-action/releases | ||
# v1.3.0 | ||
uses: coursier/setup-action@70323223454ac2a9eb2de46f389b4d045cbcdea5 | ||
# v1.3.5 | ||
uses: coursier/setup-action@7bde40eee928896f074dbb76d22dd772eed5c65f | ||
with: | ||
jvm: temurin:1.11 | ||
|
||
- name: Cache Coursier cache | ||
# https://github.com/coursier/cache-action/releases/ | ||
# v6.4.3 | ||
uses: coursier/cache-action@d1039466d0812d6370649b9afb02bbf5f646bacf | ||
# https://github.com/coursier/cache-action/releases | ||
# v6.4.5 | ||
uses: coursier/cache-action@1ff273bff02a8787bc9f1877d347948af647956d | ||
|
||
- name: "Create all API docs and create site with Paradox" | ||
run: sbt "unidoc; docs/makeSite" | ||
|
@@ -100,8 +102,8 @@ jobs: | |
steps: | ||
- name: Checkout | ||
# https://github.com/actions/checkout/releases | ||
# v3.3.0 | ||
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c | ||
# v4.1.1 | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | ||
with: | ||
fetch-depth: 0 | ||
|
||
|
@@ -112,14 +114,16 @@ jobs: | |
git checkout scratch | ||
- name: Set up JDK ${{ matrix.jdkVersion }} | ||
uses: coursier/[email protected] | ||
# https://github.com/coursier/setup-action/releases | ||
# v1.3.5 | ||
uses: coursier/setup-action@7bde40eee928896f074dbb76d22dd772eed5c65f | ||
with: | ||
jvm: ${{ matrix.jvmName }} | ||
|
||
- name: Cache Coursier cache | ||
# https://github.com/coursier/cache-action/releases/ | ||
# v6.4.3 | ||
uses: coursier/cache-action@d1039466d0812d6370649b9afb02bbf5f646bacf | ||
# https://github.com/coursier/cache-action/releases | ||
# v6.4.5 | ||
uses: coursier/cache-action@1ff273bff02a8787bc9f1877d347948af647956d | ||
|
||
- name: Test against ${{ matrix.container }} | ||
run: |- | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,21 +22,23 @@ jobs: | |
steps: | ||
- name: Checkout | ||
# https://github.com/actions/checkout/releases | ||
# v3.3.0 | ||
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c | ||
# v4.1.1 | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | ||
with: | ||
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves | ||
fetch-depth: 0 | ||
|
||
- name: Set up JDK 11 | ||
uses: coursier/[email protected] | ||
# https://github.com/coursier/setup-action/releases | ||
# v1.3.5 | ||
uses: coursier/setup-action@7bde40eee928896f074dbb76d22dd772eed5c65f | ||
with: | ||
jvm: temurin:1.11.0.17 | ||
|
||
- name: Cache Coursier cache | ||
# https://github.com/coursier/cache-action/releases/ | ||
# v6.4.3 | ||
uses: coursier/cache-action@d1039466d0812d6370649b9afb02bbf5f646bacf | ||
# https://github.com/coursier/cache-action/releases | ||
# v6.4.5 | ||
uses: coursier/cache-action@1ff273bff02a8787bc9f1877d347948af647956d | ||
|
||
- name: Publish artifacts for all Scala versions | ||
env: | ||
|
@@ -52,13 +54,17 @@ jobs: | |
if: github.event.repository.fork == false | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
# https://github.com/actions/checkout/releases | ||
# v4.1.1 | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | ||
with: | ||
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves | ||
fetch-depth: 0 | ||
|
||
- name: Set up JDK 11 | ||
uses: coursier/[email protected] | ||
# https://github.com/coursier/setup-action/releases | ||
# v1.3.5 | ||
uses: coursier/setup-action@7bde40eee928896f074dbb76d22dd772eed5c65f | ||
with: | ||
jvm: temurin:1.11 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters