hs-dbus-signature weekly #86
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: hs-dbus-signature weekly | |
# yamllint disable-line rule:truthy | |
on: | |
schedule: | |
- cron: 25 3 * * 0 | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
next-fedora-python-checks: | |
continue-on-error: true | |
strategy: | |
matrix: | |
include: | |
- dependencies: > | |
pylint | |
python3-hypothesis | |
task: PYTHONPATH=./src make -f Makefile lint | |
- dependencies: yamllint | |
task: make -f Makefile yamllint | |
- dependencies: black python3-isort | |
task: make -f Makefile fmt-travis | |
runs-on: ubuntu-latest | |
container: fedora:40 # NEXT DEVELOPMENT ENVIRONMENT | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: > | |
dnf install -y | |
make | |
${{ matrix.dependencies }} | |
- name: Run ${{ matrix.task }} | |
run: ${{ matrix.task }} |