Skip to content

[SEC] (deps): Bump git2 from 0.18.2 to 0.18.3 #107

[SEC] (deps): Bump git2 from 0.18.2 to 0.18.3

[SEC] (deps): Bump git2 from 0.18.2 to 0.18.3 #107

Workflow file for this run

---
name: CI/CD pipeline
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose