Skip to content

Bump version to 0.4.0 #15

Bump version to 0.4.0

Bump version to 0.4.0 #15

Workflow file for this run

on:
push:
tags:
- 'v*'
name: Publish
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: cargo test --all-features
- run: cargo clippy -- -Dwarnings
- run: cargo publish --token ${CRATES_TOKEN}
env:
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}