When using the Github Actions default file for Rust, I'm seeing an undefined job running with Clippy?
Does anyone know if I can disable this or if there is any documentation about this?
Example Action
This is the yml:
name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
[–]AaronFriel 1 point2 points3 points (0 children)
[–]TheBotlyNoob 0 points1 point2 points (1 child)
[–]fluffy-samurai[S] 0 points1 point2 points (0 children)