Skip to content

🔖 Bump package version to 1.1.1 #12

🔖 Bump package version to 1.1.1

🔖 Bump package version to 1.1.1 #12

Workflow file for this run

name: Build
on:
push:
branches: [ "develop", "main" ]
pull_request:
branches: [ "develop", "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
format-test-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check formatting
run: cargo fmt --all --check
- name: Run Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Run tests
run: cargo test --all-features --verbose
- name: Build
run: cargo build --release