We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca119c3 commit 20ef3bdCopy full SHA for 20ef3bd
.github/workflows/lint.yml
@@ -22,7 +22,10 @@ jobs:
22
with:
23
ref: ${{ github.event.pull_request.head.sha }}
24
- name: "Check Scala code format"
25
- run: nix run ".#t1.elaborator.format" check
+ run: |
26
+ echo "$JAVA_OPTS" | tr ' ' '\n' > "$HOME/.mill-java-opts"
27
+ export MILL_JVM_OPTS_PATH="$HOME/.mill-java-opts"
28
+ nix run ".#t1.elaborator.format" check
29
- name: "Check difftest code format"
30
run: |
31
nix shell '.#cargo' '.#rustfmt' -c bash -c 'cd difftest && cargo fmt --check'
0 commit comments