Bump ruff from 0.4.9 to 0.4.10 #453
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: Rust | |
on: | |
push: | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt -y update | |
sudo apt -y install devscripts bzr libapt-pkg-dev libtdb-dev libssl-dev pkg-config libgpgme-dev | |
cargo install cargo-all-features | |
# TODO(jelmer): Add proper test isolation so this isn't necessary | |
- name: Setup bzr identity | |
run: bzr whoami "CI <[email protected]>" | |
- name: Build | |
run: cargo build --verbose | |
- name: Run tests | |
run: cargo test-all-features --verbose |