Skip to content

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
merged 26 commits into from
Mar 24, 2025
Merged
Show file tree
Hide file tree
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
Mar 14, 2025
6490bf0
test: 🧪 update ci matrix
Mar 14, 2025
7d2f539
fix: 🐛 add missing flake8 test
Mar 14, 2025
7b1d5fb
ci: 🎨 re-organize ci
Mar 14, 2025
12f9a8c
fix: 🐛 typo
Mar 14, 2025
3fcd16f
fix: 🐛 fix dependency
Mar 14, 2025
b165b98
ci: 🎨 split test and release ci
Mar 14, 2025
1449c1b
fix: 🐛 found pyproject.toml and version.py out of sync
Mar 14, 2025
4ff6af4
ci: 🎨 improvements and cleanups
Mar 14, 2025
cff5187
fix: 🎨 black failed after changing pyproject.toml:required-python=">=…
Mar 14, 2025
076286d
build: 🚧 improving pyproject.yaml and release:build step
Mar 14, 2025
160d87c
build: 🎨 pyproject dynamically syncs from version.py | update optiona…
Mar 15, 2025
f484bf2
fix: 🎨 reorganize tool.setuptools in pyproject
Mar 15, 2025
713dad0
ci: 🎨 improve pyproject.toml and release flow
Mar 15, 2025
912f4c9
ci: 🎨 add release to testpypi
Mar 15, 2025
3e62ad6
fix: 🐛 missing testpypi credentials
Mar 15, 2025
e56f298
fix: 🐛 indentation
Mar 15, 2025
daac032
feat: ✨ add github actions lint pre-commit hook... This is so nice!
Mar 15, 2025
776e64a
fix: 🎨 bump versions
Mar 15, 2025
55b453a
ci: 📝 update comments
Mar 15, 2025
8724462
ci: ⚡️ improve description
Mar 15, 2025
9649071
build: 📝 add comments
Mar 15, 2025
007652a
fix: 🔥 remove white space/end of file checks
Mar 24, 2025
a0fc4ea
fix: 🐛 only run test on necessary file edits
Mar 24, 2025
0d0f504
fix: 🐛 fix lint/test trigger
Mar 24, 2025
b1ae5ec
Merge branch 'master' into DEV-846-release-ci-fix
Mar 24, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
// "runServices": [],
// Uncomment the next line if you want to keep your containers running after VS Code shuts down.
"shutdownAction": "stopCompose",
"onCreateCommand": "python3 -m pip install -q -e .[test]",
"onCreateCommand": "python3 -m pip install -q -e .[dev]",
Copy link
Contributor Author

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

"features": {
"ghcr.io/devcontainers/features/git:1": {},
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
Expand Down
241 changes: 0 additions & 241 deletions .github/workflows/development.yaml

This file was deleted.

4 changes: 1 addition & 3 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
name: Manual docs release
on:
workflow_dispatch:
workflow_call:
jobs:
publish-docs:
runs-on: ubuntu-latest
env:
DOCKER_CLIENT_TIMEOUT: "120"
COMPOSE_HTTP_TIMEOUT: "120"
steps:
- uses: actions/checkout@v4
- name: Deploy docs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label_issues.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.issue.number }}
LABELS: triage
LABELS: triage
29 changes: 29 additions & 0 deletions .github/workflows/lint.yaml
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
Loading
Loading