Skip to content

Commit

Permalink
Add manual run to remaining jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
vladiant committed Jan 2, 2024
1 parent d8e2994 commit 77a3c22
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#
name: CodeQL

on: push
on: [push, workflow_dispatch]

env:
BUILD_TYPE: Release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Test Coverage

on: push
on: [push, workflow_dispatch]

jobs:
build:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/deb_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
push:
branches:
- main
workflow_dispatch:

env:
BUILD_TYPE: Release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/formatter.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Auto Format

on: push
on: [push, workflow_dispatch]

jobs:
run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: macOS CMake

on: push
on: [push, workflow_dispatch]

env:
BUILD_TYPE: Release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sanitizers.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Clang Sanitizers

on: pull_request
on: [pull_request, workflow_dispatch]

jobs:
build-address-sanitizer:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static_check.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Static Check

on: push
on: [push, workflow_dispatch]

env:
BUILD_TYPE: Release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/valgrind.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Ubuntu Valgrind

on: push
on: [push, workflow_dispatch]

env:
BUILD_TYPE: Debug
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Windows CMake

on: push
on: [push, workflow_dispatch]

env:
BUILD_TYPE: Release
Expand Down

0 comments on commit 77a3c22

Please sign in to comment.