Skip to content

Commit

Permalink
Run tests on commits to main (#566)
Browse files Browse the repository at this point in the history
update actions
  • Loading branch information
mattldawson authored Jun 12, 2024
1 parent b819e57 commit f8f46df
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 5 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/clang_format_non_inline.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Clang-Format

on: [pull_request, workflow_dispatch]
on:
push:
branches:
- main
pull_request:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/gh_pages.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# Build and deploy documentation to GitHub Pages
name: GitHub Pages

on: [pull_request, push]
on:
push:
branches:
- main
- release
pull_request:
workflow_dispatch:

env:
DEFAULT_BRANCH: "release"
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/mac.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Mac

on: [pull_request, workflow_dispatch]
on:
push:
branches:
- main
pull_request:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Ubuntu

on: [pull_request, workflow_dispatch]
on:
push:
branches:
- main
pull_request:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Windows

on: [pull_request, workflow_dispatch]
on:
push:
branches:
- main
pull_request:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
Expand Down

0 comments on commit f8f46df

Please sign in to comment.