Skip to content

Update readme

Update readme #117

Workflow file for this run

on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
schedule:
# At 03:45 on Friday. (Thanks, crontab.guru)
- cron: '45 3 * * 5'
name: Build and test
jobs:
build_test:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
- nightly
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Deploy toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
components: rustfmt, clippy
- name: Run build
run: cargo build --all-targets
- name: Run tests
run: cargo test
- name: Check formatting
run: cargo fmt --check
- name: Run Clippy
run: cargo clippy --all-targets