Skip to content

Commit a7ff67f

Browse files
committed
Fix YAML
1 parent 3b5cd6e commit a7ff67f

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

.github/workflows/tests.yaml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
name: "Tests"
1+
---
2+
name: CI
23

34
on:
45
push:
56
branches: ["master"]
67
pull_request:
78
branches: ["master"]
8-
schedule:
9-
- cron: '0 0 * * 0'
9+
workflow_dispatch:
1010

1111
jobs:
12-
test:
12+
tests:
1313
name: "Python ${{ matrix.python-version }}"
1414
runs-on: "ubuntu-latest"
1515

@@ -19,15 +19,15 @@ jobs:
1919
python-version: ["2.7", "3.7", "3.8", "3.9"]
2020

2121
steps:
22-
uses: "actions/checkout@v2"
23-
uses: "actions/setup-python@v2"
24-
with:
25-
python-version: "${{ matrix.python-version }}"
26-
- name: "Install dependencies"
27-
run: |
28-
python -VV
29-
python -m site
30-
python -m pip install --upgrade pip setuptools wheel
31-
python -m pip install --upgrade coverage[toml] virtualenv tox tox-gh-actions
32-
- name: "Run tox targets for ${{ matrix.python-version }}"
33-
run: "python -m tox"
22+
- uses: "actions/checkout@v2"
23+
- uses: "actions/setup-python@v2"
24+
with:
25+
python-version: "${{ matrix.python-version }}"
26+
- name: "Install dependencies"
27+
run: |
28+
python -VV
29+
python -m site
30+
python -m pip install --upgrade pip setuptools wheel
31+
python -m pip install --upgrade coverage[toml] virtualenv tox tox-gh-actions
32+
- name: "Run tox targets for ${{ matrix.python-version }}"
33+
run: "python -m tox"

0 commit comments

Comments
 (0)