Skip to content

Bump libgit2-sys from 0.16.1+1.7.1 to 0.16.2+1.7.2 #42

Bump libgit2-sys from 0.16.1+1.7.1 to 0.16.2+1.7.2

Bump libgit2-sys from 0.16.1+1.7.1 to 0.16.2+1.7.2 #42

Workflow file for this run

name: test and build
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ inputs.branch }}
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: cargo version
run: cargo -V
- name: check
run: cargo check
- name: test
run: cargo test
- name: fmt
run: cargo fmt --all -- --check
- name: clippy
run: cargo clippy -- -D clippy::all -D clippy::nursery -D warnings
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkou code
uses: actions/checkout@v2
- name: Build project
run: cargo build --release --locked