Skip to content

Fixed the package name in the installation part. fixes #27 #32

Fixed the package name in the installation part. fixes #27

Fixed the package name in the installation part. fixes #27 #32

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version: "1.21"
- name: Build
run: cargo build --verbose
- name: Publish to crates.io
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
run: cargo publish --token ${CRATES_TOKEN}
env:
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}