Skip to content

Bump ratatui from 0.28.2-alpha.5 to 0.28.2-alpha.6 #1

Bump ratatui from 0.28.2-alpha.5 to 0.28.2-alpha.6

Bump ratatui from 0.28.2-alpha.5 to 0.28.2-alpha.6 #1

Workflow file for this run

name: Rust Pull Request Check
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build the project
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Run Clippy
run: cargo clippy -- -D warnings