Skip to content

ci-cd: code style check and clippy added to github actions #29

ci-cd: code style check and clippy added to github actions

ci-cd: code style check and clippy added to github actions #29

Workflow file for this run

name: Rust
on:
push:
branches:
- "stable"
pull_request:
branches:
- "stable"
- "dev"
env:
CARGO_TERM_COLOR: always
jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check style
run: make lint
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Clippy
run: make clippy
test:
runs-on: ubuntu-latest
needs:
- build

Check failure on line 32 in .github/workflows/rust.yml

View workflow run for this annotation

GitHub Actions / Rust

Invalid workflow file

The workflow is not valid. .github/workflows/rust.yml (Line: 32, Col: 9): Job 'test' depends on unknown job 'build'.
steps:
- uses: actions/checkout@v4
- name: Test
run: make test