mirror of
https://github.com/pyenv/pyenv.git
synced 2024-12-02 14:10:28 -05:00
56a440e4a7
Signed-off-by: Jan Macku <jamacku@redhat.com> Co-authored-by: Mislav Marohnić <git@mislav.net>
24 lines
426 B
YAML
24 lines
426 B
YAML
---
|
|
|
|
name: Lint
|
|
on:
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
shellcheck:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Repository checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Differential ShellCheck
|
|
uses: redhat-plumbers-in-action/differential-shellcheck@latest
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|