build(deps): Update ratatui requirement from 0.28.1 to 0.29.0 #67
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: '*' | |
tags: | |
- 'v*' | |
pull_request: | |
branches: '*' | |
jobs: | |
fmt: | |
name: Fmt | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- 1.78.0 | |
steps: | |
- name: Checkout sources | |
uses: actions/[email protected] | |
- name: Install toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
components: rustfmt | |
- name: Run cargo fmt | |
run: cargo fmt --all -- --check | |
clippy: | |
needs: [fmt] | |
name: Clippy | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- 1.78.0 | |
steps: | |
- name: Checkout sources | |
uses: actions/[email protected] | |
- name: Install toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
components: clippy | |
- name: Run cargo clippy | |
run: cargo clippy --all-targets --all-features -- -D warnings -W clippy::all -W clippy::pedantic | |
build: | |
needs: [fmt, clippy] | |
name: Build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- 1.78.0 | |
steps: | |
- name: Checkout sources | |
uses: actions/[email protected] | |
- name: Install toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
- name: Run cargo check | |
run: cargo build --all-features | |
test: | |
needs: [build] | |
name: Tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- 1.78.0 | |
steps: | |
- name: Checkout sources | |
uses: actions/[email protected] | |
- name: Install toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
- name: Install nextest | |
uses: taiki-e/install-action@nextest | |
- name: Nextest | |
run: cargo nextest run --workspace --all-targets |