Skip to content

Modified the README #155

Modified the README

Modified the README #155

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os: [ macos-latest, windows-latest, ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
check_clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cargo clippy
run: cargo clippy --all-targets --all-features --workspace -- -D warnings