Skip to content

Bump shlex from 1.1.0 to 1.3.0 #108

Bump shlex from 1.1.0 to 1.3.0

Bump shlex from 1.1.0 to 1.3.0 #108

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Retrieve CUDA keyring
run: wget https://developer.download.nvidia.com/compute/cuda/repos/debian11/x86_64/cuda-keyring_1.0-1_all.deb
- name: Install CUDA Keyring
run: sudo dpkg -i cuda-keyring_1.0-1_all.deb
- name: Download CUDA (11.8)
run: |
wget https://developer.download.nvidia.com/compute/cuda/repos/debian11/x86_64/cuda-toolkit-config-common_11.8.89-1_all.deb
wget https://developer.download.nvidia.com/compute/cuda/repos/debian11/x86_64/cuda-cudart-11-8_11.8.89-1_amd64.deb
wget https://developer.download.nvidia.com/compute/cuda/repos/debian11/x86_64/cuda-cudart-dev-11-8_11.8.89-1_amd64.deb
wget https://developer.download.nvidia.com/compute/cuda/repos/debian11/x86_64/cuda-driver-dev-11-8_11.8.89-1_amd64.deb
- name: Install CUDA (11.8)
run: sudo dpkg -i --force-depends *.deb
- name: Lint
run: cargo clippy --verbose
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose