Bump version to 0.7.2 #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |