Skip to content

Commit

Permalink
Add workflow to perform automated checks for PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
TSRBerry committed Jun 21, 2023
1 parent 649d372 commit 9424bcd
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Perform checks

on:
pull_request:

permissions:
pull-requests: write
checks: write

jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Run super-linter
uses: github/super-linter@v4
env:
VALIDATE_CSHARP: true
VALIDATE_BASH: true
VALIDATE_BASH_EXEC: true
VALIDATE_EDITORCONFIG: true
VALIDATE_GITHUB_ACTIONS: true
VALIDATE_JSON: true
VALIDATE_MARKDOWN: true
VALIDATE_NATURAL_LANGUAGE: true
VALIDATE_PYTHON: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 9424bcd

Please sign in to comment.