mirror of
https://github.com/angristan/wireguard-install.git
synced 2024-11-24 05:56:02 +03:00
Merge pull request #31 from angristan/actions-yaml
convert main.workflow to Actions V2 yml file
This commit is contained in:
commit
7e776a6742
9
.github/main.workflow
vendored
9
.github/main.workflow
vendored
@ -1,9 +0,0 @@
|
||||
workflow "ShellCheck" {
|
||||
on = "push"
|
||||
resolves = ["shellcheck"]
|
||||
}
|
||||
|
||||
action "shellcheck" {
|
||||
uses = "actions/bin/shellcheck@master"
|
||||
args = "wireguard-install.sh -e SC1091 -e SC2034"
|
||||
}
|
11
.github/workflows/push.yml
vendored
Normal file
11
.github/workflows/push.yml
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
on: push
|
||||
name: ShellCheck
|
||||
jobs:
|
||||
shellcheck:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- name: shellcheck
|
||||
uses: actions/bin/shellcheck@master
|
||||
with:
|
||||
args: wireguard-install.sh -e SC1091 -e SC2034
|
Loading…
Reference in New Issue
Block a user