tests: Run check-runners as part of the tests
This commit is contained in:
parent
388aa22b94
commit
d5e1bc28e9
1 changed files with 12 additions and 1 deletions
13
.github/workflows/tests.yml
vendored
13
.github/workflows/tests.yml
vendored
|
|
@ -182,7 +182,7 @@ jobs:
|
|||
exit "0"
|
||||
fi
|
||||
|
||||
snapshots:
|
||||
check-snapshots:
|
||||
name: "🔍 Check for valid snapshot urls"
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
|
|
@ -193,6 +193,17 @@ jobs:
|
|||
- name: Check for valid snapshot urls
|
||||
run: ./tools/check-snapshots --errors-only .
|
||||
|
||||
check-runners:
|
||||
name: "🔍 Check for missing or unused runner repos"
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- name: Check out code into the Go module directory
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
ref: ${{ github.event.pull_request.head.sha }}
|
||||
- name: Check for missing or unused runner repos
|
||||
run: ./tools/check-runners
|
||||
|
||||
shellcheck:
|
||||
name: "🐚 Shellcheck"
|
||||
runs-on: ubuntu-20.04
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue