Skip to content

Commit 3cf56b4

Browse files
committed
CI fixes
Signed-off-by: Aditya Sirish <[email protected]>
1 parent 46f0b79 commit 3cf56b4

File tree

2 files changed

+27
-10
lines changed

2 files changed

+27
-10
lines changed

.github/dependabot.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,26 @@ updates:
44
directory: "/"
55
schedule:
66
interval: "daily"
7+
groups:
8+
all:
9+
applies-to: version-updates
10+
patterns:
11+
- "*"
12+
- package-ecosystem: "pip"
13+
directory: "/"
14+
schedule:
15+
interval: "daily"
16+
groups:
17+
all:
18+
applies-to: version-updates
19+
patterns:
20+
- "*"
21+
- package-ecosystem: "github-actions"
22+
directory: "/"
23+
schedule:
24+
interval: "daily"
25+
groups:
26+
all:
27+
applies-to: version-updates
28+
patterns:
29+
- "*"

.github/workflows/test_yaml.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,14 @@ name: Test yaml
33
on: [push, pull_request, workflow_dispatch]
44

55
jobs:
6-
build:
7-
6+
test-yaml:
87
runs-on: ubuntu-latest
9-
strategy:
10-
fail-fast: false
11-
matrix:
12-
python-version: [3.7]
13-
148
steps:
159
- uses: actions/checkout@v2
16-
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v2
10+
- name: Set up Python
1811
with:
19-
python-version: ${{ matrix.python-version }}
12+
python-version: 3.7
13+
uses: actions/setup-python@v2
2014
- name: Install dependencies
2115
run: |
2216
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)