Skip to content

chore(deps): bump coverlet.collector from 6.0.0 to 6.0.2 in /src #53

chore(deps): bump coverlet.collector from 6.0.0 to 6.0.2 in /src

chore(deps): bump coverlet.collector from 6.0.0 to 6.0.2 in /src #53

Workflow file for this run

---
name: linter
on:
pull_request:
branches: [develop]
jobs:
lint:
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
# Full git history is needed to get a proper
# list of changed files within `super-linter`
fetch-depth: 0
- name: Mega Linter
uses: oxsecurity/megalinter/flavors/dotnet@v7.10.0
env:
VALIDATE_ALL_CODEBASE: false
FILTER_REGEX_EXCLUDE: LICENSE.md
ENABLE_LINTERS: CSHARP_DOTNET_FORMAT, MARKDOWN_MARKDOWNLINT
DEFAULT_BRANCH: develop
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Upload MegaLinter artifacts
- name: Archive production artifacts
uses: actions/upload-artifact@v4
if: ${{ success() }} || ${{ failure() }}
with:
name: MegaLinter reports
path: |
megalinter-reports
mega-linter.log