We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3855615 commit eb89eccCopy full SHA for eb89ecc
.github/workflows/test.yml
@@ -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