Skip to content

Merge pull request #18 from ursm/dependabot/cargo/clap-4.2.2 #40

Merge pull request #18 from ursm/dependabot/cargo/clap-4.2.2

Merge pull request #18 from ursm/dependabot/cargo/clap-4.2.2 #40

Workflow file for this run

on: push
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/cargo
with:
command: run
args: -- --help
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/cargo
with:
command: test
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/cargo
with:
components: rustfmt
command: fmt
args: --check
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/cargo
with:
components: clippy
command: clippy