Update dependency black to v24 #179
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: lint | |
on: # Rebuild any PRs and main branch changes | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Lint Markdown files | |
uses: avto-dev/markdown-lint@v1 | |
with: | |
config: '.markdownlint.json' | |
args: '**/*.md .github/**/*.md' | |
- name: 🧼 lint renovate config # Validates changes to renovate.json config file | |
uses: suzuki-shunsuke/[email protected] | |
with: | |
config_file_path: 'renovate.json' |