Skip to content

build(ci): enable PR name validation to follow conventional commits (… #441

build(ci): enable PR name validation to follow conventional commits (…

build(ci): enable PR name validation to follow conventional commits (… #441

Workflow file for this run

name: Nightly
on: push
jobs:
nightly-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
id: toolchain
with:
profile: minimal
toolchain: nightly
override: true
- uses: Swatinem/[email protected]
- run: cargo test
nightly-lints:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
id: toolchain
with:
profile: minimal
toolchain: nightly
override: true
components: clippy
- uses: Swatinem/[email protected]
- run: cargo clippy --all-targets -- -D warnings