fix: update rofi
version check
#18
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: 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 |