Bump serde_json from 1.0.116 to 1.0.117 #2484
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: 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.7, 3.8, 3.9, "3.10", "3.11", "3.12"] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
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 mypy 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 . | |
- name: Typing checks | |
if: always() | |
run: | | |
python -m pip install types-setuptools types-PyYAML types-dataclasses types-chardet | |
python -m mypy silver_platter | |
- name: Test suite run | |
if: always() | |
run: | | |
python -m unittest tests.test_suite | |
env: | |
PYTHONHASHSEED: random |