Skip to content

Revert "test replacing ptr casts with normal cuda types" #580

Revert "test replacing ptr casts with normal cuda types"

Revert "test replacing ptr casts with normal cuda types" #580

Workflow file for this run

name: Lint Clippy
on:
push:
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
permissions:
# Leaving clippy annotations on commits...
contents: write
# And on PRs
pull-requests: write
# Updating commit and PR statuses
checks: write
jobs:
lint-clippy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Rust nightly
run: rustup toolchain install nightly
- name: Set Rust nightly as default
run: rustup default nightly
- name: Install Rust clippy for checking clippy errors
run: rustup component add clippy
- name: Clippy Lints
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-targets --all-features -- -D warnings --no-deps
toolchain: nightly