Skip to content

Updated readme with crates.io installation #21

Updated readme with crates.io installation

Updated readme with crates.io installation #21

Workflow file for this run

name: Force Push to Main
on:
push:
branches:
- 'main'
env:
CARGO_TERM_COLOR: always
jobs:
compile:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Test
run: cargo test --verbose
check_format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Format Check
run: cargo fmt --verbose -- --check