Skip to content

v1.3.1

v1.3.1 #19

Workflow file for this run

name: Build, Test and Release
on:
release:
types: [published]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_PUBLISH_TOKEN }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Publish to crates.io
run: cargo publish