Skip to content

feat(tui): configure crate as lib and add example struct for app and … #12

feat(tui): configure crate as lib and add example struct for app and …

feat(tui): configure crate as lib and add example struct for app and … #12

Workflow file for this run

name: Check Code
on: [push]
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Cargo Cache
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Execute Checks
run: make check