-
Notifications
You must be signed in to change notification settings - Fork 86
Dev 846 release ci fix #1216
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
dimitri-yatsenko
merged 26 commits into
datajoint:master
from
drewyangdev:DEV-846-release-ci-fix
Mar 24, 2025
Merged
Dev 846 release ci fix #1216
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
fd48651
ci: 🎨 consolidate doc release by workflow_call
6490bf0
test: 🧪 update ci matrix
7d2f539
fix: 🐛 add missing flake8 test
7b1d5fb
ci: 🎨 re-organize ci
12f9a8c
fix: 🐛 typo
3fcd16f
fix: 🐛 fix dependency
b165b98
ci: 🎨 split test and release ci
1449c1b
fix: 🐛 found pyproject.toml and version.py out of sync
4ff6af4
ci: 🎨 improvements and cleanups
cff5187
fix: 🎨 black failed after changing pyproject.toml:required-python=">=…
076286d
build: 🚧 improving pyproject.yaml and release:build step
160d87c
build: 🎨 pyproject dynamically syncs from version.py | update optiona…
f484bf2
fix: 🎨 reorganize tool.setuptools in pyproject
713dad0
ci: 🎨 improve pyproject.toml and release flow
912f4c9
ci: 🎨 add release to testpypi
3e62ad6
fix: 🐛 missing testpypi credentials
e56f298
fix: 🐛 indentation
daac032
feat: ✨ add github actions lint pre-commit hook... This is so nice!
776e64a
fix: 🎨 bump versions
55b453a
ci: 📝 update comments
8724462
ci: ⚡️ improve description
9649071
build: 📝 add comments
007652a
fix: 🔥 remove white space/end of file checks
a0fc4ea
fix: 🐛 only run test on necessary file edits
0d0f504
fix: 🐛 fix lint/test trigger
b1ae5ec
Merge branch 'master' into DEV-846-release-ci-fix
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Test | ||
on: | ||
push: | ||
branches: | ||
- "**" # every branch | ||
- "!gh-pages" # exclude gh-pages branch | ||
- "!stage*" # exclude branches beginning with stage | ||
pull_request: | ||
branches: | ||
- "**" # every branch | ||
- "!gh-pages" # exclude gh-pages branch | ||
- "!stage*" # exclude branches beginning with stage | ||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
# enforce the same check as pre-commit | ||
# but only run important checks | ||
- uses: pre-commit/[email protected] | ||
with: | ||
extra_args: codespell --all-files | ||
- uses: pre-commit/[email protected] | ||
with: | ||
extra_args: black --all-files | ||
- uses: pre-commit/[email protected] | ||
with: | ||
extra_args: flake8 --all-files |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pyproject optional_dependency added dev and test for different use case