mirror of
https://github.com/dockur/windows.git
synced 2025-10-26 19:05:49 +00:00
build: Add workflows (#2)
This commit is contained in:
parent
dd29940c8e
commit
3f70a9b7c3
6 changed files with 158 additions and 3 deletions
14
.github/workflows/check.yml
vendored
Normal file
14
.github/workflows/check.yml
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
on: [workflow_call]
|
||||
name: "Check"
|
||||
permissions: {}
|
||||
|
||||
jobs:
|
||||
shellcheck:
|
||||
name: shellcheck
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Run ShellCheck
|
||||
uses: ludeeus/action-shellcheck@master
|
||||
env:
|
||||
SHELLCHECK_OPTS: -x --source-path=src -e SC2001 -e SC2034 -e SC2064 -e SC2317 -e SC2153
|
||||
Loading…
Add table
Add a link
Reference in a new issue