Blog post: How to Compile Java into Native Binaries with Mill and Graal #146
Workflow file for this run
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
name: 'autofix' | |
on: | |
pull_request: | |
jobs: | |
build-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: ./mill -i mill.scalalib.scalafmt.ScalafmtModule/ | |
- run: git clean -xdf | |
- run: git config --global user.email "[email protected]" | |
- run: git config --global user.name "Your Name" | |
- run: git commit -am "autofix" --allow-empty | |
- run: echo "[email protected]:${{ github.event.pull_request.head.repo.full_name }}.git" | |
- run: echo ${{ github.event.pull_request.head.ref }} | |
- run: echo -n "[email protected]:${{ github.event.pull_request.head.repo.full_name }}.git" > .autofix-repo | |
- run: echo -n HEAD:${{ github.event.pull_request.head.ref }} > .autofix-branch | |
- uses: actions/[email protected] | |
with: | |
path: . | |
name: autofix-artifacts | |
include-hidden-files: true |