update guides to latest versions of examples #7
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/ |