Skip to content

Fix minor issues

Fix minor issues #67

Workflow file for this run

on:
push:
tags:
- v*
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: cargo fmt --all -- --check
- run: cargo clippy --all-targets -- -D clippy::all
- run: cargo test
- run: cargo publish --token ${CRATES_TOKEN}
env:
CRATES_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}