Skip to content

Update README.md (#151) #14

Update README.md (#151)

Update README.md (#151) #14

Workflow file for this run

name: publish
on:
push:
tags:
- "v*"
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
# - name: Run clippy
# run: cargo clippy --all-features -- -D warnings
- name: Run tests
run: cargo test --all-features --verbose
- uses: katyo/publish-crates@v1
with:
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}