Skip to content

Commit 996086e

Browse files
authored
Fix Mac CI and schedule a workflow run weekly (#428)
* weekly runs * Use runner provided python on mac
1 parent 6fb1bdb commit 996086e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/rust.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77
workflow_dispatch:
88
merge_group:
99
types: [checks_requested]
10+
schedule:
11+
# Runs at 03:30, every Saturday
12+
- cron: "30 3 * * 6"
1013

1114
env:
1215
RUST_BACKTRACE: 1
@@ -27,7 +30,7 @@ jobs:
2730
steps:
2831
- uses: actions/checkout@v4
2932
- name: Install deps
30-
run: brew install python llvm yasm
33+
run: brew install llvm yasm
3134
- name: Run sccache-cache
3235
uses: mozilla-actions/sccache-action@v0.0.3
3336
- name: Build

0 commit comments

Comments
 (0)