Skip to content

Commit

Permalink
Merge branch 'develop' into test-improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
pcagas authored Jun 7, 2024
2 parents 67e7c3f + 8f9fbba commit 032b21b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/cpu-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
# Trigger on pull requests to master or develop that are
# marked as "ready for review" (non-draft PRs)
types:
- opened
- synchronize
- reopened
- ready_for_review
branches:
- master
Expand All @@ -25,6 +28,8 @@ env:

jobs:
build-docker-image-cpu:
# do not trigger on draft PRs
if: ${{ ! github.event.pull_request.draft }}
# Build and push temporary Docker image to GitHub's container registry
runs-on: ubuntu-22.04
steps:
Expand Down Expand Up @@ -248,4 +253,3 @@ jobs:

- name: Push Docker image
run: docker push $IMAGE_REPO/$IMAGE_NAME --all-tags

5 changes: 5 additions & 0 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: Documenation
on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
branches:
- master
Expand All @@ -13,6 +16,8 @@ on:

jobs:
test-docstrings:
# do not trigger on draft PRs
if: ${{ ! github.event.pull_request.draft }}
runs-on: ubuntu-24.04
steps:
- name: Check out repository
Expand Down

0 comments on commit 032b21b

Please sign in to comment.