fix: don't allow TODOs with nested items of the same type to be given… #2659
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: Formatting | |
on: | |
push: | |
branches: [ "main" ] | |
paths-ignore: | |
- ".github/**" | |
- "**.md" | |
- "**.norg" | |
jobs: | |
format-with-stylua: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Cache cargo modules | |
id: cache-cargo | |
uses: actions/cache@v2 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: ~/.cargo | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/Cargo.toml') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Install cargo | |
run: curl https://sh.rustup.rs -sSf | sh -s -- -y | |
- name: Install stylua | |
run: cargo install stylua --features lua52 | |
- name: Run formatting | |
run: stylua -v --verify . | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "chore: autoformat with stylua" | |
branch: ${{ github.ref }} | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} |