Skip to content

Commit a341bf6

Browse files
committed
Update workflows
1 parent eaaa9a3 commit a341bf6

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
name: Formatter
1+
name: black
22

33
on:
44
[push, pull_request]
55

66
jobs:
77
linting:
8-
name: Formatter
8+
name: black
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout the commit that triggered the workflow
1212
uses: actions/checkout@v2
13-
13+
1414
- name: Setup python
1515
uses: actions/setup-python@v2
1616
with:
1717
python-version: "3.9"
1818

1919
- name: Set up env
2020
run: pip install -e ".[formatter]"
21-
21+
2222
- name: Run flake8
2323
run: black src
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
name: Lint
1+
name: flake8
22

33
on:
44
[push, pull_request]
55

66
jobs:
77
linting:
8-
name: Lint
8+
name: flake8
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout the commit that triggered the workflow
1212
uses: actions/checkout@v2
13-
13+
1414
- name: Setup python
1515
uses: actions/setup-python@v2
1616
with:
1717
python-version: "3.9"
1818

1919
- name: Set up env
2020
run: pip install -e ".[linter]"
21-
21+
2222
- name: Run flake8
2323
run: flake8 src

0 commit comments

Comments
 (0)