Skip to content

readme: added a shortcut section #30

readme: added a shortcut section

readme: added a shortcut section #30

Workflow file for this run

name: ci
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
validating:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: format
run: cargo fmt --check --verbose
- name: building
run: cargo build --verbose
- name: testing
run: cargo test --verbose