Skip to content

Update the version to 1.1.0 #28

Update the version to 1.1.0

Update the version to 1.1.0 #28

Workflow file for this run

name: Rust tests
on: [ push ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check syntax
run: cargo check
- name: Run tests
run: cargo test
- name: Check lints
run: cargo clippy