mirror of
https://github.com/actions/actions-runner-controller.git
synced 2025-12-10 11:41:27 +00:00
23 lines
410 B
YAML
23 lines
410 B
YAML
name: Unit tests for entrypoint
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- '**'
|
|
paths:
|
|
- 'runner/**'
|
|
- 'test/entrypoint/**'
|
|
- '!**.md'
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
name: Test entrypoint
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Run unit tests for entrypoint.sh
|
|
run: |
|
|
cd test/entrypoint
|
|
bash entrypoint_unittest.sh
|