Skip to content

v0.1.5

v0.1.5 #6

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 --feature-powerset --mutually-exclusive-features no_std,default --lib --tests --examples
- name: Cargo Hack Test
run: cargo hack test --feature-powerset --mutually-exclusive-features no_std,default
- name: Publish
run: cargo publish
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}