-
Notifications
You must be signed in to change notification settings - Fork 6
50 lines (47 loc) · 1.29 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
41
42
43
44
45
46
47
48
49
50
---
name: ci repo weekly
# yamllint disable-line rule:truthy
on:
schedule:
- cron: 35 3 * * 5
# 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:
# PYTHON CHECKS ON NEXT FEDORA PYTHON AND PYTHON TOOLS VERSION
- dependencies: >
pylint
python3-dbus
python3-dbus-python-client-gen
python3-matplotlib
python3-numpy
python3-pygithub
python3-requests
python3-semantic_version
task: lint
- dependencies: >
black
python3-isort
shfmt
task: fmt-travis
- dependencies: yamllint
task: yamllint
- dependencies: >
findutils
ShellCheck
task: shellcheck
runs-on: ubuntu-latest
container: fedora:39 # NEXT DEVELOPMENT ENVIRONMENT
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: >
dnf install -y
make
${{ matrix.dependencies }}
- name: make -f Makefile ${{ matrix.task }}
run: make -f Makefile ${{ matrix.task }}