Skip to content

fixed license

fixed license #40

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: publish crates
uses: katyo/publish-crates@v2
if: false
with:
dry-run: ${{ github.event_name != 'push' }}
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}