Skip to content

Supported merge of block and types repos #105

Supported merge of block and types repos

Supported merge of block and types repos #105

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
tests:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Run cargo fmt check
run: cargo fmt --all -- --check
- name: Run cargo tests verbosed
run: cargo test --verbose
- name: Run cargo clippy
run: cargo clippy --all-targets