Skip to content

Commit 14b1fe6

Browse files
committed
separate build steps
1 parent 50d7d21 commit 14b1fe6

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ on:
77
branches: [ "main" ]
88

99
jobs:
10-
build:
11-
10+
test:
1211
runs-on: ubuntu-latest
1312
strategy:
1413
fail-fast: false
@@ -36,5 +35,13 @@ jobs:
3635
- name: pylint
3736
run: |
3837
pylint -E .
38+
39+
build:
40+
runs-on: ubuntu-latest
41+
strategy:
42+
fail-fast: false
43+
44+
steps:
45+
- uses: actions/checkout@v4
3946
- name: build and inspect
4047
uses: hynek/build-and-inspect-python-package@v2

0 commit comments

Comments
 (0)