Skip to content

Update hashbrown requirement from 0.12 to 0.14 #30

Update hashbrown requirement from 0.12 to 0.14

Update hashbrown requirement from 0.12 to 0.14 #30

Workflow file for this run

name: Fast PR check
on:
pull_request:
types: [ opened, edited ]
branches: [ master ]
paths:
- '**.rs'
- '**/Cargo.toml'
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Check no_std
uses: actions-rs/cargo@v1
with:
command: check
args: --manifest-path gpu-descriptor/Cargo.toml --no-default-features
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --all --all-features