-
Notifications
You must be signed in to change notification settings - Fork 77
82 lines (68 loc) · 1.84 KB
/
scheduled.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
name: Scheduled full tests
on:
schedule:
# Run at 10:00 AM/PM UTC
- cron: "0 10,22 * * *"
workflow_dispatch:
jobs:
flake8:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: run flake
uses: ./.github/actions/run-flake
isort:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: run isort
uses: ./.github/actions/run-isort
black:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: black
uses: psf/black@stable
with:
version: "22.12.0"
common-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup
uses: ./.github/actions/setup
with:
python-version: ${{ matrix.python-version }}
- name: All tests
uses: ./.github/actions/all-tests
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
env_vars: OS,PYTHON
fail_ci_if_error: false
files: ./coverage.xml
flags: "unittests-${{ matrix.python-version }}"
name: codecov-umbrella
verbose: true
- name: Notify to slack if failure
if: ${{ failure() }}
uses: rtCamp/action-slack-notify@v2
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_USERNAME: GH Slack Notifier for EDA
SLACK_TITLE: Failure of scheduled tests for ansible-rulebook
SLACK_MESSAGE: |
Scheduled tests for ansible-rulebook failed.
Id: ${{ github.run_id }}"
Workflow: ${{ github.workflow }}