Skip to content

chore: update version to 0.14.0 (#11) #28

chore: update version to 0.14.0 (#11)

chore: update version to 0.14.0 (#11) #28

Workflow file for this run

name: Rust
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install Rust components
run: rustup component add rustfmt clippy
- name: Check format
run: cargo fmt --all -- --check
- name: Run cargo clippy
run: cargo clippy --all
- name: Build
run: cargo build
- name: Run cargo test
run: cargo test --all