converted main.workflow to Actions V2 yml files

This commit is contained in:
Tony Chia 2019-09-18 13:28:56 -07:00
parent 43d591f972
commit 370adf4cb6
2 changed files with 10 additions and 8 deletions

View File

@ -1,8 +0,0 @@
workflow "Trigger: Push" {
on = "push"
resolves = ["Shellcheck"]
}
action "Shellcheck" {
uses = "ludeeus/action-shellcheck@master"
}

10
.github/workflows/push.yml vendored Normal file
View File

@ -0,0 +1,10 @@
on: push
name: 'Trigger: Push'
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Shellcheck
uses: ludeeus/action-shellcheck@master