Skip to content

v0.1.2

v0.1.2 #4

Workflow file for this run

name: Publish
on:
release:
types: [ published ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install cargo-hack
uses: taiki-e/install-action@cargo-hack
- name: Cargo Hack Check
run: cargo hack check --each-feature --lib --tests
- name: Cargo Hack Test
run: cargo hack test --each-feature
- name: Publish
run: cargo publish
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}