chore: update readme #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
# Pattern matched against refs/tags | |
tags: | |
- '*' # Push events to every tag not containing / | |
workflow_dispatch: | |
name: CI | |
jobs: | |
publish: | |
name: Publish | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
profile: minimal | |
override: true | |
components: rustfmt | |
- name: Cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Check formatting | |
run: cargo fmt --check | |
- name: Check if the README is up to date. | |
run: | | |
cargo install cargo-rdme | |
cargo rdme --check | |
- name: Run tests | |
run: cargo test --all-features | |
- name: Publish crate default-struct-builder | |
uses: katyo/publish-crates@v2 | |
with: | |
registry-token: ${{ secrets.CRATES_TOKEN }} |