Skip to content

Bump the all group with 2 updates #2

Bump the all group with 2 updates

Bump the all group with 2 updates #2

Workflow file for this run

name: pr
on:
pull_request:
jobs:
pr:
permissions: write-all
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt,clippy
cache: false
- name: Rustfmt Check
uses: actions-rust-lang/rustfmt@v1
- name: Run clippy
run: cargo clippy --all -- -D warnings
- name: Cargo Test
run: cargo test -q
- name: merge
if: github.event_name == 'pull_request' && github.actor == 'dependabot[bot]'
run: |
gh pr merge --merge $GITHUB_HEAD_REF
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}