Skip to content

Commit

Permalink
Add weekly build
Browse files Browse the repository at this point in the history
  • Loading branch information
udoprog committed Dec 10, 2023
1 parent cdb328d commit 887f0fe
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Weekly

on:
schedule:
- cron: "0 18 * * 0"

jobs:
weekly:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust: ["1.58", stable]
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{matrix.rust}}
- run: cargo build --workspace --all-targets

0 comments on commit 887f0fe

Please sign in to comment.