mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-03 13:11:31 +00:00
20 lines
455 B
YAML
20 lines
455 B
YAML
name: check
|
|
on: [push, pull_request]
|
|
jobs:
|
|
fmt:
|
|
name: fmt
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
components: rustfmt
|
|
- run: ./hack/ci/install-linux-deps.sh
|
|
- run: ./hack/build/cargo.sh fmt --all -- --check
|
|
shellcheck:
|
|
name: shellcheck
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: ./hack/code/shellcheck.sh
|