Skip to content

Commit

Permalink
Check workflows
Browse files Browse the repository at this point in the history
Signed-off-by: Viktor Szépe <[email protected]>
  • Loading branch information
szepeviktor authored Jul 18, 2024
1 parent bdc761e commit c7a902f
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow

name: "Workflow"

on: # yamllint disable-line rule:truthy
pull_request: null
push:
branches:
- "main"
workflow_call: null

permissions: {} # yamllint disable-line rule:braces

concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true

jobs:
actionlint:
name: "Actionlint"
runs-on: "ubuntu-22.04"
timeout-minutes: 1
steps:
-
name: "Checkout repository"
uses: "actions/[email protected]"
-
name: "Analyze workflow files"
uses: "docker://rhysd/actionlint:1.7.1"
with:
args: "-color -verbose -shellcheck="

0 comments on commit c7a902f

Please sign in to comment.