Skip to content

chore: tweak Makefile file path archive #10

chore: tweak Makefile file path archive

chore: tweak Makefile file path archive #10

Workflow file for this run

name: PR
on:
pull_request:
jobs:
ci:
name: CI
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: TruffleHog OSS
uses: trufflesecurity/trufflehog@main
with:
path: ./
base: ${{ github.event.repository.default_branch }}
head: HEAD
extra_args: --debug --only-verified
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Formatting check
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Lint check
uses: actions-rs/cargo@v1
with:
command: clippy
args: --workspace -- -D warnings
- name: Run test
uses: actions-rs/cargo@v1
with:
command: test
args: --workspace --no-fail-fast