Allow severity of duplicate_imports
rule to be configurable
#100
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: Lint | |
on: | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
lint-swift: | |
name: Lint Swift | |
runs-on: ubuntu-24.04 # "Noble Numbat" | |
container: swift:6.0-noble | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Lint | |
run: swift run swiftlint --reporter github-actions-logging --strict 2> /dev/null | |
lint-markdown: | |
name: Lint Markdown | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Lint | |
uses: DavidAnson/markdownlint-cli2-action@v19 | |
with: | |
globs: | | |
CHANGELOG.md | |
CONTRIBUTING.md |