-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add scaladoc support. * update site workflow. * empty scaladoc. * remove depends on. * update scala version. * only scala212 and scala213 for docs module. * ignore forcing unsupported versions. * update scala version on ci.
- Loading branch information
Showing
5 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -33,7 +33,7 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
java: ['[email protected]', '[email protected]'] | ||
scala: ['2.11.12', '2.12.15', '2.13.8', '3.1.0'] | ||
scala: ['2.11.12', '2.12.15', '2.13.8', '3.2.1'] | ||
steps: | ||
- name: Checkout current branch | ||
uses: actions/[email protected] | ||
|
@@ -46,7 +46,7 @@ jobs: | |
- name: Cache scala dependencies | ||
uses: coursier/cache-action@v6 | ||
- name: Run tests | ||
run: sbt ++${{ matrix.scala }}! test | ||
run: sbt ++${{ matrix.scala }} test | ||
|
||
website: | ||
runs-on: ubuntu-20.04 | ||
|
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 |
---|---|---|
|
@@ -27,12 +27,14 @@ jobs: | |
distribution: temurin | ||
java-version: 17 | ||
check-latest: true | ||
- name: Check that site workflow is up to date | ||
- name: Check if the README file is up to date | ||
run: sbt docs/checkReadme | ||
- name: Check if the site workflow is up to date | ||
run: sbt docs/checkGithubWorkflow | ||
- name: Check artifacts build process | ||
run: sbt +publishLocal | ||
- name: Check website build process | ||
run: sbt docs/buildWebsite | ||
run: sbt docs/clean; sbt docs/buildWebsite | ||
publish-docs: | ||
name: Publish Docs | ||
runs-on: ubuntu-latest | ||
|
@@ -60,7 +62,7 @@ jobs: | |
generate-readme: | ||
name: Generate README | ||
runs-on: ubuntu-latest | ||
if: ${{ (github.event_name == 'push') || ((github.event_name == 'release') && (github.event_name == 'published')) }} | ||
if: ${{ (github.event_name == 'push') || ((github.event_name == 'release') && (github.event.action == 'published')) }} | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/[email protected] | ||
|
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