Skip to content

Commit 3753f52

Browse files
committed
Format file
1 parent 6c5da73 commit 3753f52

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ on:
44
branches:
55
- main
66
paths-ignore:
7-
- '**.md'
7+
- "**.md"
88
pull_request:
99
paths-ignore:
10-
- '**.md'
10+
- "**.md"
1111
jobs:
1212
run:
1313
name: Run
@@ -17,24 +17,24 @@ jobs:
1717
python-version: ["3.10"]
1818

1919
steps:
20-
- name: Checkout
21-
uses: actions/checkout@v2
20+
- name: Checkout
21+
uses: actions/checkout@v2
2222

23-
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v2
25-
with:
26-
python-version: ${{ matrix.python-version }}
23+
- name: Set up Python ${{ matrix.python-version }}
24+
uses: actions/setup-python@v2
25+
with:
26+
python-version: ${{ matrix.python-version }}
2727

2828
- name: Install dependencies
2929
run: |
3030
pip install --upgrade pip
3131
pip install -e .[dev]
3232
33-
- name: Lint
34-
run: |
35-
black --check .
36-
mypy .
33+
- name: Lint
34+
run: |
35+
black --check .
36+
mypy .
3737
38-
- name: Test with pytest
39-
run: |
40-
pytest .
38+
- name: Test with pytest
39+
run: |
40+
pytest .

0 commit comments

Comments
 (0)