Skip to content

chore(deps): bump num-traits from 0.2.14 to 0.2.19 in /rust #994

chore(deps): bump num-traits from 0.2.14 to 0.2.19 in /rust

chore(deps): bump num-traits from 0.2.14 to 0.2.19 in /rust #994

Workflow file for this run

name: rust fmt
on: push
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt
override: true
- name: rust-rustfmt-check
uses: mbrobbel/rustfmt-check@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --manifest-path rust/Cargo.toml --all
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- name: Run tests
run: cd rust/ && cargo test --verbose