mirror of
https://github.com/masonr/yet-another-bench-script.git
synced 2025-04-17 07:55:16 +00:00
20 lines
344 B
YAML
20 lines
344 B
YAML
name: CI 🤖
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
shellcheck:
|
|
name: Shellcheck 🐚
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository 📥
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Run ShellCheck ✅
|
|
uses: ludeeus/action-shellcheck@2.0.0
|
|
env:
|
|
SHELLCHECK_OPTS: -e SC1091
|