Skip to content

Commit bfc8370

Browse files
authored
Fix YAML (#3)
1 parent 1f56719 commit bfc8370

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
uses: actions/checkout@v2
1313

1414
- name: Setup Python
15-
- uses: actions/setup-python@v2
16-
with:
17-
python-version: '3.x'
15+
uses: actions/setup-python@v2
16+
with:
17+
python-version: '3.x'
1818

1919
- name: Install dependencies
2020
run: make build

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
uses: actions/checkout@v2
1515

1616
- name: Setup Python
17-
- uses: actions/setup-python@v2
18-
with:
19-
python-version: '3.x'
17+
uses: actions/setup-python@v2
18+
with:
19+
python-version: '3.x'
2020
- name: Run tests
2121
env:
2222
SANDBOX_API_KEY: ${{ secrets.SANDBOX_API_KEY }}

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@ lint:
99

1010
test:
1111
pip install -r test-requirements.txt && \
12+
pip install -r requirements.txt && \
1213
python -m unittest discover test/
1314

1415
publish:
1516
python3 -m pip install --user --upgrade twine && \
1617
python3 -m twine upload -r pypi dist/* --config-file .pypirc
1718

18-
.PHONY: build test lint
19+
.PHONY: build test lint publish

0 commit comments

Comments
 (0)