build(deps): Bump anyhow from 1.0.86 to 1.0.89 #1997
Workflow file for this run
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: | |
- master | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Format | |
run: cargo fmt && git diff --exit-code | |
- name: Lint | |
run: | | |
rustup update | |
rustup component add clippy | |
cargo clippy -- -D warnings | |
test: | |
strategy: | |
matrix: | |
platform: ["ubuntu-latest", "macos-latest"] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: deps | |
if: matrix.platform == 'ubuntu-latest' | |
run: | | |
sudo apt install -y libxcb-shape0-dev libxcb-xfixes0-dev | |
- name: Build | |
run: cargo build | |
- name: Test | |
run: cargo test |