Skip to content

Bump version to 0.8.1 #3

Bump version to 0.8.1

Bump version to 0.8.1 #3

Workflow file for this run

name: Continuous integration
# This workflow run tests and build for each push
on:
push:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Update local toolchain
run: |
rustup update
rustup component add clippy
rustup install stable
- name: Toolchain info
run: |
cargo --version --verbose
rustc --version
cargo clippy --version
- name: Lint
run: |
cargo fmt -- --check
cargo clippy -- -D warnings
- name: Test
run: |
cargo check
cargo test --all
- name: Build
run: |
cargo build --release