/
githubmirror
/
edx-platform
Обзор
Документация
Войти
/
githubmirror
/
edx-platform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
release-ulmo
.github/workflows/shellcheck.yml
33 строки
976 B
Akanshu Aich
fix: update release-ulmo branch triggers for pylint and dunder init workflows (#177)
12 мар 2026, 13:32
Не верифицирован
12 мар 2026, 13:32
c187ac4
Код
Авторство
О чём код?
# Run ShellCheck on PRs and master # For more context, see: # https://github.com/openedx/.github/blob/master/docs/decisions/0001-shellcheck.rst name: ShellCheck on: pull_request: merge_group: push: branches: - release-ulmo permissions: contents: read jobs: shellcheck: strategy: matrix: os: ["ubuntu", "macos"] uses: openedx/.github/.github/workflows/shellcheck.yml@master with: # For details on the meaning of each of these arguments, see: # https://github.com/openedx/.github/blob/master/.github/workflows/shellcheck.yml # We exclude `./node_modules/*` by default because we want people to easily be able to # copy and run the command locally. Local copies of most of our services have a `./node_modules` # directory that we want to ignore. exclude-patterns: "./node_modules/*" operating-system: "${{ matrix.os }}" shellcheck-version: "v0.9.0" #shellcheck-options: ""