1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2024-11-13 11:04:27 -05:00

Test Rust package with fmt & clippy

This commit is contained in:
Alex Kotov 2022-01-30 08:15:53 +05:00
parent da76d17df6
commit c69c1b2488
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08

View file

@ -85,6 +85,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy
- name: autogen
run: ./autogen.sh
- name: configure
@ -96,3 +97,9 @@ jobs:
- working-directory: pkgs/rust
name: test
run: cargo test
- working-directory: pkgs/rust
name: fmt
run: cargo fmt --check
- working-directory: pkgs/rust
name: clippy
run: cargo clippy