Skip to content

0.3.0

0.3.0 #13

Workflow file for this run

name: Publish
on:
release:
types:
- published
jobs:
test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Test
run: cargo test --verbose
publish-crates-io:
runs-on: macos-latest
needs: test
steps:
- uses: actions/checkout@v3
- name: Publish to crates.io
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_LOGIN }}
run: cargo publish