Skip to content

fix: update rofi version check #18

fix: update rofi version check

fix: update rofi version check #18

Workflow file for this run

name: Test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install stable toolchain
run: rustup toolchain install stable
- name: Install libpango
run: sudo apt-get install libpango1.0-dev
- name: Cache dependencies
uses: Swatinem/rust-cache@v2
- name: Check
run: cargo check
continue-on-error: false
- name: Build
run: cargo build
continue-on-error: false
- name: Format
run: cargo fmt --check
- name: Lint
run: cargo clippy -- -D warnings