-
Notifications
You must be signed in to change notification settings - Fork 4
40 lines (38 loc) · 1.07 KB
/
weekly.yml
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
---
name: into-dbus-python weekly
# yamllint disable-line rule:truthy
on:
schedule:
- cron: 20 2 * * 5
workflow_dispatch:
jobs:
next-fedora-python-checks:
strategy:
matrix:
include:
- dependencies: black python3-isort
task: make -f Makefile fmt-travis
- dependencies: yamllint
task: make -f Makefile yamllint
- dependencies: >
pylint
python3-dbus
python3-dbus-signature-pyparsing
python-hypothesis
task: >
PYTHONPATH=./src:/github/home/.local/lib/python3.12/site-packages
make -f Makefile lint
runs-on: ubuntu-latest
container: fedora:39 # NEXT DEVELOPMENT ENVIRONMENT
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: >
dnf install -y
make
pip
${{ matrix.dependencies }}
- name: Install hs-dbus-signature
run: pip install --user hs-dbus-signature
- name: ${{ matrix.task }}
run: ${{ matrix.task }}