Skip to content

Commit

Permalink
test CI
Browse files Browse the repository at this point in the history
  • Loading branch information
easybe committed Aug 9, 2024
1 parent 3855615 commit a96bfce
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Test

on:
push:
branches:
- "gardena/eb/ci"
paths:
- ".github/workflows/test.ya?ml"
- "mkdocs.ya?ml"
- "poetry.lock"
- "pyproject.toml"
- "docs/**"

jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: write

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install Python
uses: actions/setup-python@v5
with:
python-version: ${{ vars.PYTHON_VERSION }}

- name: Install Poetry
run: pip install poetry

- name: Install Dependencies
run: poetry install --no-root --with docs

# - name: Deploy website
# run: poetry run mkdocs gh-deploy

0 comments on commit a96bfce

Please sign in to comment.