Skip to content

First preparations for release 0.4.0 #9

First preparations for release 0.4.0

First preparations for release 0.4.0 #9

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Check code
run: cargo check
- name: Run tests
run: cargo test
- name: Run rustfmt
run: cargo fmt -- --check
- name: Run clippy
run: cargo clippy -- --deny warnings
- name: Check documentation
run: RUSTDOCFLAGS="-D warnings" cargo doc --no-deps