chore(deps): Bump importlib-metadata from 8.4.0 to 8.5.0 #1370
Workflow file for this run
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
# GitHub Actions Workflow for Super-Linter | |
# | |
# Super-Linter is a simple combination of various linters, written in bash, to help validate your | |
# source code. | |
# | |
# - Web site: https://github.com/github/super-linter/ | |
# - Documentation: https://github.com/github/super-linter#readme | |
name: Super-Linter | |
on: | |
push: | |
branches: | |
- develop | |
- master | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
permissions: | |
contents: read | |
statuses: write | |
checks: write | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
super-linter: | |
name: Super-Linter | |
uses: cordada/github-actions-utils/.github/workflows/super-linter.yaml@master | |
with: | |
default_git_branch: develop | |
validate_all_codebase: false | |
validate_editorconfig: true | |
validate_markdown: true |