Skip to content

Complete the RegisterMachine.md document #14

Complete the RegisterMachine.md document

Complete the RegisterMachine.md document #14

Workflow file for this run

name: Format
on:
pull_request:
jobs:
format:
runs-on: ubuntu-latest
container:
image: swift:6.0.1-jammy
steps:
- uses: actions/checkout@v4
- run: ./Utilities/format.sh
- name: Check for formatting changes
run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
git diff --exit-code || {
echo "::error::The formatting changed some files. Please run \`./Utilities/format.sh\` and commit the changes."
exit 1
}