Skip to content

Commit 3529c80

Browse files
committed
Fix yaml error
1 parent f03217b commit 3529c80

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ on:
1212
- "*"
1313

1414
jobs:
15-
build:
15+
coverage:
16+
runs-on: ubuntu-latest
1617
strategy:
1718
fail-fast: false
1819
matrix:
1920
mongodb-version: [4.2]
2021
include:
2122
- name: "coverage"
2223
python: "3.8"
23-
os: ubuntu-latest
2424
tox_env: "py38"
2525

2626
steps:

.github/workflows/linting.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ on:
1212
- "*"
1313

1414
jobs:
15-
build:
15+
linting:
16+
runs-on: ubuntu-latest
1617
strategy:
1718
fail-fast: false
1819
matrix:
1920
include:
2021
- name: "linting"
2122
python: "3.8"
22-
os: ubuntu-latest
2323
tox_env: "lint"
2424

2525
steps:

.github/workflows/main.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,23 @@ on:
1212

1313
jobs:
1414
build:
15+
runs-on: ubuntu-latest
1516
strategy:
1617
fail-fast: false
1718
matrix:
1819
mongodb-version: [3.6, 4.0, 4.2]
1920
include:
2021
- name: "ubuntu-py36"
2122
python: "3.6"
22-
os: ubuntu-latest
2323
tox_env: "py36"
2424
- name: "ubuntu-py37"
2525
python: "3.7"
26-
os: ubuntu-latest
2726
tox_env: "py37"
2827
- name: "ubuntu-py38"
2928
python: "3.8"
30-
os: ubuntu-latest
3129
tox_env: "py38"
3230
- name: "ubuntu-pypy3"
3331
python: "pypy3"
34-
os: ubuntu-latest
3532
tox_env: "pypy3"
3633

3734
steps:

0 commit comments

Comments
 (0)