Skip to content

feat(maven): Version comparing (#8) #26

feat(maven): Version comparing (#8)

feat(maven): Version comparing (#8) #26

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
steps:
- uses: actions/checkout@v3
- name: Setup tooling
run: |
rustup update ${{ matrix.toolchain }}
rustup default ${{ matrix.toolchain }}
rustup component add clippy
rustup component add rustfmt
- name: Toolchain info
run: |
cargo --version --verbose
rustc --version
cargo clippy --version
- name: Check package
run: cargo check --verbose
- name: Check formatting
run: cargo fmt -- --check --verbose
- name: Lint
run: cargo clippy -- -D warnings -A dead_code
- name: Test
run: cargo test --verbose
- name: Build
run: cargo build --release --verbose