Skip to content

Commit 3627ddf

Browse files
authored
Merge branch 'datajoint:main' into main
2 parents e32c71b + 0bd4e00 commit 3627ddf

File tree

5 files changed

+35
-9
lines changed

5 files changed

+35
-9
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: devcontainer_build_publish
2+
on:
3+
workflow_dispatch:
4+
5+
jobs:
6+
call_devcontainer_build_publish:
7+
uses: datajoint/.github/.github/workflows/devcontainer-build-publish.yaml@main
8+
secrets:
9+
DOCKERHUB_USERNAME: ${{secrets.DOCKERHUB_USERNAME}}
10+
DOCKERHUB_TOKEN: ${{secrets.DOCKERHUB_TOKEN_FOR_ELEMENTS}}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: mkdocs-release
2+
on:
3+
workflow_dispatch:
4+
5+
jobs:
6+
mkdocs_release:
7+
uses: datajoint/.github/.github/workflows/mkdocs_release.yaml@main
8+
permissions:
9+
contents: write
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: semantic-release
2+
on:
3+
workflow_dispatch:
4+
5+
jobs:
6+
call_semantic_release:
7+
uses: datajoint/.github/.github/workflows/semantic-release.yaml@main
8+
secrets:
9+
APP_ID: ${{ secrets.ELEMENT_APP_ID }}
10+
GET_TOKEN_KEY: ${{ secrets.ELEMENT_GET_TOKEN_KEY }}

.github/workflows/test.yaml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
11
name: Test
22
on:
33
push:
4+
branches:
5+
- main
46
pull_request:
7+
branches:
8+
- main
59
workflow_dispatch:
610
jobs:
711
tests:
812
runs-on: ubuntu-latest
913
strategy:
1014
matrix:
1115
py_ver: ["3.9", "3.10"]
12-
mysql_ver: ["8.0", "5.7"]
13-
include:
14-
- py_ver: "3.8"
15-
mysql_ver: "5.7"
16-
- py_ver: "3.7"
17-
mysql_ver: "5.7"
16+
mysql_ver: ["8.0"]
1817
steps:
1918
- uses: actions/checkout@v3
2019
- name: Set up Python ${{matrix.py_ver}}
@@ -29,4 +28,3 @@ jobs:
2928
run: |
3029
python_version=${{matrix.py_ver}}
3130
black element_animal --check --verbose --target-version py${python_version//.}
32-

docs/src/.overrides/assets/stylesheets/extra.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ html a[title="YouTube"].md-social__link svg {
9292
/* --md-footer-fg-color: var(--dj-white); */
9393
}
9494

95-
[data-md-color-scheme="slate"] td,
96-
th {
95+
[data-md-color-scheme="slate"] .jupyter-wrapper .Table Td {
9796
color: var(--dj-black)
9897
}

0 commit comments

Comments
 (0)