Skip to content

Remove git2 from dependency to fix build dependency error (#10) #20

Remove git2 from dependency to fix build dependency error (#10)

Remove git2 from dependency to fix build dependency error (#10) #20

Workflow file for this run

name: CI Build
on:
push:
branches: ["main", "ci"]
pull_request:
branches: ["main", "ci"]
workflow_dispatch: # Manual trigger
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
working-directory: ./devclean
- name: Run tests
run: cargo test --verbose
working-directory: ./devclean
rust-clippy-analyze:
name: Run rust-clippy analyzing
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af #@v1
with:
profile: minimal
toolchain: stable
components: clippy
override: true
- name: Install required cargo
run: cargo install clippy-sarif sarif-fmt
working-directory: ./devclean
- name: Run rust-clippy
run: cargo clippy
--all-features
--message-format=json | clippy-sarif | tee rust-clippy-results.sarif | sarif-fmt
continue-on-error: true
working-directory: ./devclean