-
Notifications
You must be signed in to change notification settings - Fork 6
m/updates #106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
m/updates #106
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
d87a7e3
update SBT to 1.12.14
mr-git e1f97e0
update Scala to 3.3.8
mr-git d166c79
update circe to 0.14.16
mr-git a91c6fb
update munit to 1.3.4
mr-git 6dd962c
update tapir to 1.13.28
mr-git 3889690
update cats to 2.13.0
mr-git 0d31090
switch `play-json` from `com.typesafe.play` to `org.playframework` (2…
mr-git 0799ecf
udpate sbt-scalafmt to 2.6.2
mr-git 58ff593
udpate sbt-artifactory-plugin to 0.1.2
mr-git 7bd8b99
udpate scalafmt to 3.11.4
mr-git 18fb8e3
update CI and Release workflows to be the same as in other Evo's repos
mr-git 99df960
disable `sbt-scalac-opts-plugin`
mr-git f41fdb5
restore the circe dependency for `derivation-circe-compat213`
mr-git c4b54b3
restore encoding scalacOptions
mr-git File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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,50 @@ | ||
| name: CI | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ base ] | ||
| pull_request: | ||
|
|
||
| jobs: | ||
| test: | ||
|
|
||
| runs-on: ubuntu-latest | ||
|
|
||
| strategy: | ||
| matrix: | ||
| scala: | ||
| - 3.3.8 | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v7 | ||
|
|
||
| - uses: coursier/cache-action@v8 | ||
|
|
||
| - name: setup Java 17 | ||
| uses: actions/setup-java@v5 | ||
| with: | ||
| java-version: '17' | ||
| distribution: 'temurin' | ||
| cache: 'sbt' | ||
|
|
||
| - name: setup SBT | ||
| uses: sbt/setup-sbt@v1 | ||
|
|
||
| - name: check code ${{ matrix.scala }} | ||
| run: sbt "++${{ matrix.scala }}; clean; check" | ||
|
|
||
| - name: build ${{ matrix.scala }} | ||
| run: sbt "++${{ matrix.scala }}; clean; coverage; test; coverageAggregate" | ||
|
|
||
| - name: locate coverage report | ||
| id: coverage | ||
| if: success() | ||
| run: echo "file=$(find . -path '*/coverage-report/cobertura.xml' | head -1)" >> "$GITHUB_OUTPUT" | ||
|
|
||
| - name: test coverage | ||
| if: success() | ||
| uses: coverallsapp/github-action@v2 | ||
| with: | ||
| file: ${{ steps.coverage.outputs.file }} | ||
| format: cobertura | ||
| flag-name: Scala ${{ matrix.scala }} |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,11 +1,11 @@ | ||
| name: Publish new Release | ||
| name: Publish Release | ||
|
|
||
| on: | ||
| release: | ||
| types: [published] | ||
| branches: [base] | ||
| push: | ||
| tags: | ||
| - 'v*' | ||
|
|
||
| jobs: | ||
| release: | ||
| uses: evolution-gaming/scala-github-actions/.github/workflows/release.yml@v1 | ||
| uses: evolution-gaming/scala-github-actions/.github/workflows/release.yml@v5 | ||
| secrets: inherit |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -7,4 +7,5 @@ project/**/metals.sbt | |
| .idea | ||
| .bsp | ||
| .vscode | ||
| .DS_Store | ||
| .DS_Store | ||
| target/ | ||
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.