Skip to content

Commit

Permalink
Modified actions to avoid duplicate runs for PRs.
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed Aug 5, 2023
1 parent 2606bcd commit 2486b63
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/doxygenate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
name: Build documentation

jobs:
doxygenator:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
on: [push, pull_request]
on:
push:
branches:
- master
pull_request:

name: Run unit tests

jobs:
build:
test:
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
strategy:
Expand Down

0 comments on commit 2486b63

Please sign in to comment.