Some checks failed
Check, format and test / build (push) Failing after 49s
32 lines
719 B
YAML
32 lines
719 B
YAML
name: Check, format and test
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
build:
|
|
container: docker.io/rust:1.79.0-alpine3.20
|
|
steps:
|
|
- name: Install the dependencies
|
|
run: |
|
|
rustup component add clippy rustfmt &&
|
|
apk update &&
|
|
apk add musl-dev git npm
|
|
|
|
- name: Checkout the code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Check if the code compiles
|
|
run: cargo check
|
|
|
|
- name: Check if the tests run correctly
|
|
run: cargo test
|
|
|
|
- name: Check if the code is formatted correctly
|
|
run: cargo fmt --check
|
|
|
|
- name: Check if Clippy has someting to say
|
|
run: cargo clippy --all-targets
|