mirror of
https://github.com/actions/actions-runner-controller.git
synced 2025-12-10 03:13:15 +00:00
* feat: clean and add docker-compose * feat: make docker compose download arch aware * fix: use new ARG name * fix: correct case in url * ci: add some debug output to workflow * ci: add ARG for docker * fix: various fixes * chore: more alignment changes * chore: use /usr/bin over /usr/local/bin * chore: more logical order * fix: add recursive flag * chore: actions/runner stuff with actions/runner * ci: bump checkout to latest * fix: rootless build Co-authored-by: toast-gear <toast-gear@users.noreply.github.com> Co-authored-by: Yusuke Kuoka <ykuoka@gmail.com>
46 lines
1.0 KiB
YAML
46 lines
1.0 KiB
YAML
name: Validate Runners
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- '**'
|
|
paths:
|
|
- 'runner/**'
|
|
- 'test/startup/**'
|
|
- '!**.md'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
shellcheck:
|
|
name: runner / shellcheck
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: shellcheck
|
|
uses: reviewdog/action-shellcheck@v1
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
path: "./runner"
|
|
pattern: |
|
|
*.sh
|
|
*.bash
|
|
update-status
|
|
# Make this consistent with `make shellsheck`
|
|
shellcheck_flags: "--shell bash --source-path runner"
|
|
exclude: "./.git/*"
|
|
check_all_files_with_shebangs: "false"
|
|
# Set this to "true" once we addressed all the shellcheck findings
|
|
fail_on_error: "false"
|
|
test-runner-entrypoint:
|
|
name: Test entrypoint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Run tests
|
|
run: |
|
|
make acceptance/runner/startup
|