mirror of
https://github.com/angristan/wireguard-install.git
synced 2024-11-01 03:02:35 +00:00
5c2ba2a35b
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2.4.0...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
23 lines
478 B
YAML
23 lines
478 B
YAML
on: [push, pull_request, pull_request_target]
|
|
|
|
name: Lint
|
|
|
|
jobs:
|
|
shellcheck:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: shellcheck
|
|
uses: ludeeus/action-shellcheck@1.1.0
|
|
env:
|
|
SHELLCHECK_OPTS: -e SC1091,SC1117,SC2001,SC2034
|
|
|
|
shfmt:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: shfmt
|
|
uses: bltavares/actions/shfmt@master
|
|
env:
|
|
SHFMT_ARGS: -d
|