Skip to content

Increase current development environment to Fedora 42 #156

Increase current development environment to Fedora 42

Increase current development environment to Fedora 42 #156

Workflow file for this run

---
name: hs-dbus-signature CI
# yamllint disable-line rule:truthy
on:
push:
branches: [master]
pull_request:
branches: [master]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
development_environment_checks:
strategy:
matrix:
include:
- dependencies: black python3-isort
task: make -f Makefile fmt-travis
- dependencies: yamllint
task: make -f Makefile yamllint
- dependencies: >
pylint
python-hypothesis
python3-setuptools
task: >
PATH=${PATH}:/github/home/.local/bin PYTHONPATH=./src
make -f Makefile lint
- dependencies: python-hypothesis python3-setuptools
task: PYTHONPATH=./src make -f Makefile test
- dependencies: >
python-coverage
python-hypothesis
python3-setuptools
task: PYTHONPATH=./src make -f Makefile coverage
- dependencies: python python3-build twine
task: make -f Makefile package
runs-on: ubuntu-latest
container: fedora:42 # CURRENT DEVELOPMENT ENVIRONMENT
steps:
- uses: actions/checkout@v5
with:
persist-credentials: false
- name: Install dependencies
run: >
dnf install -y
make
pip
${{ matrix.dependencies }}
- name: Install pyright
run: pip install --user pyright
- name: ${{ matrix.task }}
run: ${{ matrix.task }}