mirror of
https://github.com/angristan/wireguard-install.git
synced 2024-11-22 04:35:09 +00:00
convert main.workflow to Actions V2 yml file
This commit is contained in:
parent
6fc7c44a87
commit
189271b4c2
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