File: pythonpackage.yml

package info (click to toggle)
silver-platter 0.7.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,564 kB
  • sloc: python: 348; makefile: 33; sh: 1
file content (45 lines) | stat: -rw-r--r-- 1,166 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Python package

on:
  push:
  pull_request:
  schedule:
  - cron: '0 6 * * *'    # Daily 6AM UTC build

jobs:
  build:

    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-latest]
        python-version: ["3.10", "3.11", "3.12", '3.13', '3.14']
      fail-fast: false

    steps:
    - uses: actions/checkout@v5
    - name: Set up Python ${{ matrix.python-version }}
      uses: actions/setup-python@v6
      with:
        python-version: ${{ matrix.python-version }}
    - name: Install dependencies
      run: |
        sudo apt -y update
        sudo apt -y install devscripts bzr rustc cargo libapt-pkg-dev libtdb-dev libssl-dev pkg-config libgpgme-dev
        pip install --upgrade pip
        pip install -U pip setuptools setuptools-rust testtools
        pip install ".[debian,launchpad,dev]"
        pip install --upgrade breezy
    - name: Build
      run: |
        python setup.py build_ext -i
    - name: Style checks
      run: |
        ruff check py
    - name: Test suite run
      if: always()
      run: |
        python -m unittest tests.test_suite
      env:
        PYTHONHASHSEED: random
        PYTHONPATH: py