Skip to content

Introduce layouts to tui #25

Introduce layouts to tui

Introduce layouts to tui #25

Workflow file for this run

name: Run tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
- name: Install dependencies
run: cargo fetch
# - name: Build project
# run: cargo build --verbose
- name: Run tests
run: cargo clippy
- name: Run tests
run: cargo test --verbose