Skip to content

Commit eb89ecc

Browse files
committed
test CI
1 parent 3855615 commit eb89ecc

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

.github/workflows/test.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches:
6+
- "gardena/eb/ci"
7+
paths:
8+
- ".github/workflows/test.ya?ml"
9+
- "mkdocs.ya?ml"
10+
- "poetry.lock"
11+
- "pyproject.toml"
12+
- "docs/**"
13+
14+
jobs:
15+
publish:
16+
runs-on: ubuntu-latest
17+
permissions:
18+
contents: write
19+
20+
steps:
21+
- name: Checkout repository
22+
uses: actions/checkout@v4
23+
24+
- name: Install Python
25+
uses: actions/setup-python@v5
26+
with:
27+
python-version: ${{ env.PYTHON_VERSION }}
28+
29+
- name: Install Poetry
30+
run: pip install poetry
31+
32+
- name: Install Dependencies
33+
run: poetry install --no-root --with docs
34+
35+
# - name: Deploy website
36+
# run: poetry run mkdocs gh-deploy

0 commit comments

Comments
 (0)