Skip to content

Update derive_more requirement from 0.99.17 to 1.0.0 #31

Update derive_more requirement from 0.99.17 to 1.0.0

Update derive_more requirement from 0.99.17 to 1.0.0 #31

Workflow file for this run

name: Rust-Stable
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install latest stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --verbose --tests
- name: Test
run: cargo test --verbose