Bump debian-changelog from 0.1.14 to 0.2.0 #144
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, macos-latest, windows-latest] | |
python-version: [3.9, "3.10", "3.11", "3.12"] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: sudo apt -y install bzr devscripts libapt-pkg-dev | |
if: "matrix.os == 'ubuntu-latest'" | |
- run: python -m pip install breezy launchpadlib | |
- run: python -m pip install "bzr+lp:brz-debian" python_apt@git+https://salsa.debian.org/apt-team/[email protected] | |
if: "matrix.os == 'ubuntu-latest'" | |
- name: Build | |
run: cargo build --verbose | |
- name: Run tests | |
run: cargo test --verbose --features debian | |
if: "matrix.os == 'ubuntu-latest'" | |
- name: Run tests | |
run: cargo test --verbose | |
if: "matrix.os != 'macos-latest'" |