Skip to content

Bump bumpalo from 3.11.0 to 3.14.0 #7

Bump bumpalo from 3.11.0 to 3.14.0

Bump bumpalo from 3.11.0 to 3.14.0 #7

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check
run: cargo check --verbose --all
- name: Fmt
run: cargo fmt --check --verbose --all
- name: Clippy
run: cargo clippy --verbose --all
- name: Run tests
run: cargo test --verbose --all