Skip to content

Commit af6f28f

Browse files
authored
start tagging releases again (#385)
* start tagging releases again * delete the `check_release` CI job that does the same check as pre-commit does
1 parent 3bf6ad1 commit af6f28f

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -62,20 +62,9 @@ jobs:
6262
- name: Run tests
6363
run: python -m tox -e flake8 -- --onlyfuzz --no-cov -n auto
6464

65-
check_release:
66-
runs-on: ubuntu-latest
67-
strategy:
68-
fail-fast: false
69-
steps:
70-
- uses: actions/checkout@v4
71-
- name: Set up Python 3
72-
uses: actions/setup-python@v5
73-
- name: Test changelog & version
74-
run: python tests/check_changelog_and_version.py
75-
7665
release:
7766
runs-on: ubuntu-latest
78-
needs: [pyright, test, check_release]
67+
needs: [pyright, test]
7968
if: github.repository == 'python-trio/flake8-async' && github.ref == 'refs/heads/main'
8069
steps:
8170
- uses: actions/checkout@v4
@@ -88,4 +77,5 @@ jobs:
8877
TWINE_USERNAME: __token__
8978
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
9079
run: |
80+
python tests/check_changelog_and_version.py --ensure-tag
9181
python -m build && twine upload --skip-existing dist/*

0 commit comments

Comments
 (0)