Skip to content

Commit

Permalink
update rust workflow to runs at midnight every day
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmic-zip committed Oct 4, 2023
1 parent 4d3016a commit 859712a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@ name: Rust

on:
push:
branches: [ "develop", "build" ]
branches: [ "master", "develop", "build" ]
pull_request:
branches: [ "master", "develop", "build" ]
schedule:
- cron: '0 0 * * *' # This schedule runs at midnight every day

env:
CARGO_TERM_COLOR: always
Expand All @@ -16,7 +18,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Install Deps
- name: Install Depedencies
run: |
sudo mkdir /var/maid
sudo cp maid_lists/ /var/maid -R
Expand Down

0 comments on commit 859712a

Please sign in to comment.