nightly testing

This commit is contained in:
stelzo 2024-05-21 12:07:04 +02:00
parent aa17a9d676
commit c05dd81585
1 changed files with 23 additions and 0 deletions

23
.github/workflows/nightly.yml vendored Normal file
View File

@ -0,0 +1,23 @@
name: Nightly testing
on:
push:
pull_request:
workflow_dispatch:
schedule: [cron: "40 1 * * *"]
permissions:
contents: read
jobs:
ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: clippy
- name: Linting
run: cargo clippy --all-targets --features derive,nalgebra,rayon -- -D warnings
- name: Tests
run: cargo test --features derive,nalgebra,rayon