mirror of
https://github.com/dragoonDorise/EmuDeck.git
synced 2025-06-25 00:03:36 -04:00
21 lines
437 B
YAML
21 lines
437 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main, beta, dev]
|
|
pull_request:
|
|
branches: [main, beta, dev]
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
shellcheck:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: ShellCheck
|
|
uses: ludeeus/action-shellcheck@master
|
|
with:
|
|
severity: error
|
|
env:
|
|
SHELLCHECK_OPTS: -x
|