Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Tests

# A pull_request trigger can only fire from the repository the PR is opened
# against, so this stub has to live here even though the runner lives in
# FOGProject/fog-workflows. It is deliberately six lines: all of the logic is
# in the reusable workflow, so fixing the runner does not mean editing this
# file.
#
# The sibling of fogproject's own .github/workflows/tests.yml, pointing at a
# different reusable -- that one installs efitools for a shell test this
# repository does not have.
#
# Not a push trigger, and not because of caution: the runaway that put ~30
# commits on fogproject's dev-branch in 20 minutes happened because the
# triggered workflow pushed a commit back. This one only reads.

on:
pull_request:

jobs:
suite:
uses: FOGProject/fog-workflows/.github/workflows/fog-plugins-tests.yml@main
Loading