Skip to content

Commit

Permalink
Merge pull request #13 from winitzki/feature/fix-build
Browse files Browse the repository at this point in the history
update build scripts
  • Loading branch information
winitzki authored Nov 25, 2023
2 parents e2fdc6e + 9b4e289 commit fde3570
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ jobs:
strategy:
matrix:
java:
- '8.0.382'
- '11.0.21'
- '17.0.9'
scala:
- '2.13.11'
Expand Down Expand Up @@ -57,4 +55,5 @@ jobs:
- run: sbt scalafmtCheckAll scalafmtSbtCheck
name: build_and_test
on:
pull_request: {}
push: {}
8 changes: 6 additions & 2 deletions github-scala-build-and-test.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ let GithubActions =
sha256:71df44892a17abca817cfb35e2612d117f7fceec55114a6eb76b65a7eea4e6f4

let matrix =
toMap { java = [ "8.0.382", "11.0.21", "17.0.9" ], scala = [ "2.13.11" ] }
toMap { java = [
-- "8.0.382",
-- "11.0.21",
"17.0.9",
], scala = [ "2.13.11" ] }

let setup =
[ GithubActions.steps.actions/checkout // { `with` = Some (toMap { submodules = "true" }) }
Expand All @@ -26,7 +30,7 @@ in GithubActions.Workflow::{
, name = "build_and_test"
, on = GithubActions.On::{
, push = Some GithubActions.Push::{=}
--, pull_request = Some GithubActions.PullRequest::{=}
, pull_request = Some GithubActions.PullRequest::{=}
}
, jobs = toMap
{ checks = GithubActions.Job::{
Expand Down

0 comments on commit fde3570

Please sign in to comment.