Skip to content

Commit d6085d0

Browse files
committed
ci: Renamed the "lint" job to "build", because linting is no longer part of that step.
Signed-off-by: Michael Seifert <[email protected]>
1 parent 1b7e9d6 commit d6085d0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ env:
1414
PYTHON_LATEST: 3.12
1515

1616
jobs:
17-
lint:
18-
name: Run linters
17+
build:
18+
name: Build distribution
1919
runs-on: ubuntu-latest
2020
outputs:
2121
version: ${{ steps.version.outputs.version }}
@@ -86,7 +86,7 @@ jobs:
8686
check:
8787
name: Check
8888
if: always()
89-
needs: [lint, test]
89+
needs: [build, test]
9090
runs-on: ubuntu-latest
9191
steps:
9292
- name: Decide whether the needed jobs succeeded or failed
@@ -122,7 +122,7 @@ jobs:
122122
environment: release
123123
# Run only on pushing a tag
124124
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
125-
needs: [lint, check]
125+
needs: [build, check]
126126
runs-on: ubuntu-latest
127127
steps:
128128
- name: Install pandoc
@@ -149,8 +149,8 @@ jobs:
149149
- name: GitHub Release
150150
uses: ncipollo/release-action@v1
151151
with:
152-
name: pytest-asyncio ${{ needs.lint.outputs.version }}
152+
name: pytest-asyncio ${{ needs.build.outputs.version }}
153153
artifacts: dist/*
154154
bodyFile: README.md
155-
prerelease: ${{ needs.lint.outputs.prerelease }}
155+
prerelease: ${{ needs.build.outputs.prerelease }}
156156
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)