Skip to content

upgrade scc

upgrade scc #272

Workflow file for this run

on: [push, pull_request]
name: Run Test Cases
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain: ['stable', '1.70.0']
steps:
- name: Checkout repo
uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.toolchain }}
override: true
- uses: actions-rs/cargo@v1
with:
command: check
- run: rustup component add clippy
- uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings
- uses: actions-rs/cargo@v1
env:
RUST_LOG: debug
with:
command: test
args: -- --nocapture --test-threads=1