mirror of
https://github.com/pyenv/pyenv.git
synced 2024-12-04 02:24:51 -05:00
29 lines
500 B
YAML
29 lines
500 B
YAML
---
|
|
|
|
name: Lint
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
shellcheck:
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
security-events: write
|
|
|
|
steps:
|
|
- name: Repository checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Differential ShellCheck
|
|
uses: redhat-plumbers-in-action/differential-shellcheck@v4
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|