Skip to content

First draft of a working terminal. #6

First draft of a working terminal.

First draft of a working terminal. #6

Workflow file for this run

name: clippy-check
on:
push:
branches:
- main
pull_request:
env:
RUSTFLAGS: "-Dwarnings"
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- run: cargo clippy --all-targets --all-features