Skip to content

Temporarily revert "add commit hashes to git sources" #195

Temporarily revert "add commit hashes to git sources"

Temporarily revert "add commit hashes to git sources" #195

Workflow file for this run

name: Check
on:
pull_request: {}
push:
branches: master
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Run cargo check
run: cargo check --locked
- name: Run cargo clippy
run: cargo clippy -- -D warnings
- name: Check format
run: cargo fmt -- --check