Skip to content

chore(deps): bump regex from 1.11.0 to 1.11.1 #310

chore(deps): bump regex from 1.11.0 to 1.11.1

chore(deps): bump regex from 1.11.0 to 1.11.1 #310

Workflow file for this run

name: Rust
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: clippy, rustfmt
cache: true
- name: Check formatting
run: cargo fmt -- --check
- name: Check
run: cargo check
- name: Clippy
run: cargo clippy --all -- -D warnings
- name: Build
run: cargo build --verbose
- name: Test
run: cargo test --all
automerge:
needs: build
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}