mirror of
https://github.com/rocky-linux/rocky-tools.git
synced 2024-11-15 01:31:27 +00:00
23 lines
377 B
YAML
23 lines
377 B
YAML
|
---
|
||
|
name: shellcheck
|
||
|
'on':
|
||
|
push:
|
||
|
pull_request:
|
||
|
schedule:
|
||
|
- cron: '0 1 * * *'
|
||
|
|
||
|
jobs:
|
||
|
|
||
|
shellcheck:
|
||
|
name: shellcheck
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- name: Check out the codebase.
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- name: Shellcheck!
|
||
|
run: |
|
||
|
shellcheck migrate2rocky/migrate2rocky.sh
|
||
|
shellcheck mirror/mirrorsync.sh
|