Skip to content

chore(deps): update x86_64 requirement from 0.14.3 to 0.15.1 #297

chore(deps): update x86_64 requirement from 0.14.3 to 0.15.1

chore(deps): update x86_64 requirement from 0.14.3 to 0.15.1 #297

Workflow file for this run

name: Rust
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -D warnings
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install toolchains
run: rustup component add rustfmt clippy
- name: fmt
run: cargo fmt -- --check
- name: Build
run: cargo build --verbose
- name: Clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
- name: Run tests
run: cargo test --verbose