roc/.github/workflows/nightly.yml
Richard Feldman 0b00afdd51 Revert "Revert "Add www github workflow""
This reverts commit f1f7c0bdf6.
2021-06-05 22:05:45 -04:00

33 lines
727 B
YAML

on:
schedule:
- cron: '0 0 * * *'
name: Nightly Release Build
jobs:
build:
name: Test and Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add rustfmt
- uses: actions-rs/cargo@v1
name: cargo update (needed for Inkwell)
with:
command: update
- uses: actions-rs/cargo@v1
name: cargo test
with:
command: test
args: --release
- uses: actions-rs/cargo@v1
name: cargo build
with:
command: build
args: --release