Skip to content

feat(manifest): Bump up to new minor release #8

feat(manifest): Bump up to new minor release

feat(manifest): Bump up to new minor release #8

Workflow file for this run

name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build_ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run formatter
run: cargo fmt --all -- --config format_code_in_doc_comments=true --check
- name: Run Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Install cargo deny
run: cargo install cargo-deny
- name: Run license checks
run: cargo deny check licenses
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
build_windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Run formatter
run: cargo fmt --all -- --config format_code_in_doc_comments=true --check
- name: Run Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Install cargo deny
run: cargo install cargo-deny
- name: Run license checks
run: cargo deny check licenses
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
build_macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Run formatter
run: cargo fmt --all -- --config format_code_in_doc_comments=true --check
- name: Run Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Install cargo deny
run: cargo install cargo-deny
- name: Run license checks
run: cargo deny check licenses
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose