From c05dd81585553bc7f2c9056e1fb7c4a96aba88c2 Mon Sep 17 00:00:00 2001 From: stelzo Date: Tue, 21 May 2024 12:07:04 +0200 Subject: [PATCH] nightly testing --- .github/workflows/nightly.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/nightly.yml 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