git-credential-store-regex 0.3.1

A Git credential helper that provides credentials by matching attributes against regular expressions
name: clippy

on:
  pull_request:
    branches: ["*"]
    paths: ["**/*.rs", "**/Cargo.toml", "**/Cargo.lock"]
  push:
    branches: ["*"]
    tags-ignore: ["v*"]
    paths: ["**/*.rs", "**/Cargo.toml", "**/Cargo.lock"]
  workflow_dispatch:

jobs:
  clippy:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v6

      - name: Set up Rust
        uses: moonrepo/setup-rust@v1
        with:
          components: clippy

      - name: Run clippy
        run: cargo clippy --all-targets --all-features
        env:
          RUSTFLAGS: -Dwarnings