fix: focus borders is set correctly when using focus_borders
+ read…
#255
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
--- | |
name: Push-Linter | |
on: push | |
jobs: | |
super-lint: | |
name: Push-Linter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Run Super Linter | |
uses: github/super-linter@v4 | |
env: | |
VALIDATE_ALL_CODEBASE: false | |
DEFAULT_BRANCH: master | |
GITHUB_TOKEN: $({ secrets.GITHUB_TOKEN }) | |
VALIDATE_CSHARP: true | |
VALIDATE_YAML: true | |
VALIDATE_XML: true | |
VALIDATE_EDITORCONFIG: true |