diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml new file mode 100644 index 0000000..6df69a5 --- /dev/null +++ b/.github/workflows/nightly.yml @@ -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