-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
71d6e4a
commit 46534bc
Showing
1 changed file
with
4 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,19 +6,16 @@ on: | |
pull_request: | ||
|
||
jobs: | ||
fail_if_pull_request_is_draft: | ||
if: github.event.pull_request.draft == true | ||
runs-on: ... | ||
steps: | ||
- name: Fails in order to indicate that pull request needs to be marked as ready to review and unit tests workflow needs to pass. | ||
run: exit 1 | ||
|
||
test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
lua: [lua=5.1, lua=5.2, lua=5.3, lua=5.4, luajit=2.0, [email protected]] | ||
steps: | ||
- name: Fail on Draft PRs | ||
if: github.event.pull_request.draft == true | ||
run: exit 1 | ||
|
||
# Checks-out the repository under $GITHUB_WORKSPACE. | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v5 | ||
|