Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:
pull_request:
branches:
- main
types: [opened, synchronize, reopened, ready_for_review]
merge_group:

defaults:
Expand All @@ -31,6 +32,7 @@ env:
jobs:
build:
name: Build on ${{ matrix.os }}
if: github.event.pull_request.draft == false
Comment thread
aduh95 marked this conversation as resolved.
Outdated
runs-on: ${{ matrix.os }}

strategy:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/lint-and-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ on:
pull_request:
branches:
- main
types: [opened, synchronize, reopened, ready_for_review]
merge_group:

# The permissions specified below apply to workflows triggered by `merge_group`, `push`, and `pull_request` events that originate from the same repository (non-fork).
Expand All @@ -39,6 +40,7 @@ env:
jobs:
lint:
name: Quality checks
if: github.event.pull_request.draft == false
Comment thread
aduh95 marked this conversation as resolved.
Outdated
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -96,6 +98,7 @@ jobs:

tests:
name: Tests
if: github.event.pull_request.draft == false
Comment thread
aduh95 marked this conversation as resolved.
Outdated
runs-on: ubuntu-latest

steps:
Expand Down
Loading