Skip to content

Commit 1d9ae2b

Browse files
Merge branch 'master' into DEV-861-dependabot
2 parents 2f539e9 + 4285086 commit 1d9ae2b

File tree

13 files changed

+366
-286
lines changed

13 files changed

+366
-286
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
// "runServices": [],
2929
// Uncomment the next line if you want to keep your containers running after VS Code shuts down.
3030
"shutdownAction": "stopCompose",
31-
"onCreateCommand": "python3 -m pip install -q -e .[test]",
31+
"onCreateCommand": "python3 -m pip install -q -e .[dev]",
3232
"features": {
3333
"ghcr.io/devcontainers/features/git:1": {},
3434
"ghcr.io/devcontainers/features/docker-in-docker:2": {},

.github/workflows/development.yaml

Lines changed: 0 additions & 241 deletions
This file was deleted.

.github/workflows/docs.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
name: Manual docs release
22
on:
33
workflow_dispatch:
4+
workflow_call:
45
jobs:
56
publish-docs:
67
runs-on: ubuntu-latest
7-
env:
8-
DOCKER_CLIENT_TIMEOUT: "120"
9-
COMPOSE_HTTP_TIMEOUT: "120"
108
steps:
119
- uses: actions/checkout@v4
1210
- name: Deploy docs

.github/workflows/label_issues.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ jobs:
1515
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1616
GH_REPO: ${{ github.repository }}
1717
NUMBER: ${{ github.event.issue.number }}
18-
LABELS: triage
18+
LABELS: triage

.github/workflows/lint.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Test
2+
on:
3+
push:
4+
branches:
5+
- "**" # every branch
6+
- "!gh-pages" # exclude gh-pages branch
7+
- "!stage*" # exclude branches beginning with stage
8+
pull_request:
9+
branches:
10+
- "**" # every branch
11+
- "!gh-pages" # exclude gh-pages branch
12+
- "!stage*" # exclude branches beginning with stage
13+
jobs:
14+
lint:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- uses: actions/setup-python@v5
19+
# enforce the same check as pre-commit
20+
# but only run important checks
21+
- uses: pre-commit/[email protected]
22+
with:
23+
extra_args: codespell --all-files
24+
- uses: pre-commit/[email protected]
25+
with:
26+
extra_args: black --all-files
27+
- uses: pre-commit/[email protected]
28+
with:
29+
extra_args: flake8 --all-files

0 commit comments

Comments
 (0)