mirror of
https://github.com/pyenv/pyenv.git
synced 2024-12-02 16:41:16 -05:00
25 lines
426 B
YAML
25 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 }}
|