Skip to content

Add contribution guidelines, update the license #47

Add contribution guidelines, update the license

Add contribution guidelines, update the license #47

Workflow file for this run

name: Check README
on:
pull_request:
branches: [ "*" ]
env:
CARGO_TERM_COLOR: always
CARGO_NET_GIT_FETCH_WITH_CLI: true
jobs:
check_readme:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install cargo-hakari
uses: baptiste0928/cargo-install@v1
with:
crate: cargo-readme
- name: Check that readme matches lib.rs
run: |
cp README.md README-copy.md
cp udigest-derive/README.md udigest-derive/README-copy.md
make readme
diff README.md README-copy.md
diff udigest-derive/README.md udigest-derive/README-copy.md