Skip to content
This repository was archived by the owner on Sep 2, 2023. It is now read-only.

Commit 96be14a

Browse files
committed
merge config files for github actions
1 parent 084384d commit 96be14a

File tree

2 files changed

+14
-15
lines changed

2 files changed

+14
-15
lines changed

.github/workflows/code-format.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/workflows/python.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,20 @@ on:
1313
- cron: '0 20 * * 5'
1414

1515
jobs:
16+
code-format:
17+
runs-on: ubuntu-18.04
18+
strategy:
19+
matrix:
20+
python-version:
21+
- 3.8
22+
steps:
23+
- uses: actions/checkout@v1
24+
- uses: actions/setup-python@v1
25+
with:
26+
python-version: ${{ matrix.python-version }}
27+
- run: pip install black==19.10b0
28+
- run: pip freeze
29+
- run: black --check .
1630
tests:
1731
runs-on: ubuntu-18.04
1832
strategy:

0 commit comments

Comments
 (0)