Skip to content

Commit

Permalink
git: Обновление .github
Browse files Browse the repository at this point in the history
  • Loading branch information
Lemon4ksan committed Jan 4, 2025
1 parent 419fd11 commit 29019d8
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ labels: bug

**Воспроизведение:**
Шаги для воспроизведения бага:

1. Создать объект '...'
2. Вызвать метод '....'
3. Увидеть ошибку
Expand All @@ -21,4 +22,4 @@ labels: bug
Если это возможно, прикрепите сообщения об ошибке и полученный стектрэйс.

**Дополнительная информация:**
Добавьте любой другой контекст о проблеме здесь.
Добавьте любой другой контекст о проблеме здесь.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ labels: feature-request
Опишите как вашу идею можно реализовать, или приложите ваши наработки

**Дополнительная информация:**
Добавьте любой другой контекст о проблеме здесь.
Добавьте любой другой контекст о проблеме здесь.
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: ci
on:
push:
branches:
- master
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- uses: actions/setup-python@v5
with:
python-version: 3.x
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: actions/cache@v4
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- run: pip install 'mkdocstrings[python]'
- run: pip install mkdocs-material
- run: mkdocs gh-deploy --force

0 comments on commit 29019d8

Please sign in to comment.