Skip to content

Bump version to 0.7.2 #25

Bump version to 0.7.2

Bump version to 0.7.2 #25

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- run: rustup update --no-self-update 1.75
- run: rustup component add rustfmt clippy --toolchain 1.75
- run: rustup default 1.75
- run: rustc --version
- uses: actions/checkout@v4
- name: Format
run: cargo fmt -- --check
- name: Build
run: cargo build --features=plugin
- name: Clippy
run: cargo clippy --all-features -- -Dwarnings
- name: Run tests
run: cargo test --all-features