Skip to content

Migrate the Options module from AddOnLoader to LoadOnDemand #504

Migrate the Options module from AddOnLoader to LoadOnDemand

Migrate the Options module from AddOnLoader to LoadOnDemand #504

Workflow file for this run

name: Autoformat
on:
pull_request:
paths-ignore:
- "README.MD"
types: [opened, synchronize, reopened, ready_for_review]
push:
branches:
- master
paths-ignore:
- "README.MD"
jobs:
check-format:
name: Enforce consistent formatting
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up StyLua
uses: JohnnyMorganz/stylua-action@v4.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --check . --verbose
version: v0.17.1
- name: Run autoformat
run: ./autoformat.sh
- name: Check for inconsistent formatting
run: git --no-pager diff --exit-code -b . #The -b is for inconsistent newlines, which we ignore (for now)