Skip to content

Commit

Permalink
chore: build with nightly on a schedule (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
aschey authored Feb 23, 2025
1 parent cd0a0cb commit 8798c14
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: "Build on nightly"
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
jobs:
build-nightly:
name: "Build with Nightly"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust nightly
uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly
- name: build
run: cargo +nightly build

0 comments on commit 8798c14

Please sign in to comment.