git.delta.rocks / unique-network / refs/commits / fa23d159ee84

difftreelog

source

.github/workflows/codestyle.yml391 Bsourcehistory
1name: Code style23on: [push]45jobs:6  rustfmt:7    runs-on: ubuntu-20.0489    steps:10      - uses: actions/checkout@v111      - uses: icepuma/rust-action@master12        with:13          args: cargo fmt -- --check1415  clippy:16    runs-on: ubuntu-20.041718    steps:19      - uses: actions/checkout@v120      - uses: icepuma/rust-action@master21        with:22          args: cargo clippy -- -Dwarnings