Skip to content

Commit

Permalink
Attempt to depuplicate action runs, add schedule for daily qodana scans
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankvdStam committed Sep 24, 2024
1 parent 01d3280 commit 61a2c79
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: build
on:
workflow_dispatch:
push:
branches: [ "main" ]
branches:
- main
pull_request:
branches: [ "main" ]
workflow_dispatch:

env:
CARGO_TERM_COLOR: always
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/qodana.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
name: Qodana
on:
workflow_dispatch:
pull_request:
schedule:
- cron: "30 1 * * *"
push:
branches: # Specify your branches here
- main # The 'main' branch
branches:
- main
pull_request:
workflow_dispatch:

jobs:
qodana:
Expand Down

0 comments on commit 61a2c79

Please sign in to comment.