mirror of
https://github.com/angristan/openvpn-install.git
synced 2025-03-13 22:23:14 +01:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [ludeeus/action-shellcheck](https://github.com/ludeeus/action-shellcheck) from 0.2.1 to 0.3.0. - [Release notes](https://github.com/ludeeus/action-shellcheck/releases) - [Commits](https://github.com/ludeeus/action-shellcheck/compare/0.2.1...2f2aa0d97fc8dfbed979cbc05a5380c256ba0922) Signed-off-by: dependabot[bot] <support@github.com>
29 lines
508 B
YAML
29 lines
508 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
name: Lint
|
|
|
|
jobs:
|
|
shellcheck:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: shellcheck
|
|
uses: ludeeus/action-shellcheck@0.3.0
|
|
env:
|
|
SHELLCHECK_OPTS: -e SC1091,SC2164,SC2034,SC1072,SC1073,SC1009
|
|
|
|
shfmt:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: shfmt
|
|
uses: bltavares/actions/shfmt@master
|
|
env:
|
|
SHFMT_ARGS: -d
|