Skip to content

doc: add changelog and changelog CI #2

doc: add changelog and changelog CI

doc: add changelog and changelog CI #2

Workflow file for this run

on:
pull_request:
types: [opened, synchronize, edited, review_requested, ready_for_review]
name: PR
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run Clippy
run: cargo clippy --all-targets --all-features
format:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- uses: mbrobbel/rustfmt-check@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
mode: review