Merge branch 'main' into 2026-01-31-eve-online-local-watch #26
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
| name: test-and-publish | |
| on: | |
| push: | |
| workflow_dispatch: | |
| pull_request_review: | |
| types: [submitted] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Avoid git mutating files on checkout | |
| run: | | |
| git config --global core.autocrlf false | |
| - uses: actions/checkout@v4 | |
| - name: Install elm-format | |
| run: npm install -g elm-format | |
| - name: Check formatting in Elm program code | |
| run: elm-format --validate ./implement/ |