зеркало из
https://github.com/ssciwr/AMMICO.git
synced 2025-10-30 05:26:05 +02:00
* maintain: remove text analysis with transformers and topic analysis * maintain: remove text analysis from display function * maintain: remove summary module (VQA) * maintain: remove summary module (VQA) * maintain: remove cropposts, update pyproject.toml * maintain: removed obsolete functionality * maintain: update CI workflow * maintain: run all tests together in CI, remove version restrictions * maintain: fix tf version for deepface/retinaface restrictions * mainatin: remove more obsolete files, restructure pyproject.toml * fix: do not run gcv tests on CI * CI: test compatibility with Python versions * maintain+bug: fix python version due to deepface, fix deepface memory leak * maintain: switch to ruff * fix: correct remaining ruff issues, is_interactive probably obsolete..? * CI: bump actions and python versions, run checks on all os * maintain&fix: blis do not compile from source, use uv for installs, update dockerfile * fix: uv install system-wide * fix: try with only pip to force blis binary install * fix: try now with mixed pip and uv for better performance while preserving blis binary * fix: revert to pip since uv installs different numpy version, unfortunately * fix: other python version
37 строки
918 B
YAML
37 строки
918 B
YAML
name: Pages
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.11'
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
|
|
- name: install ammico
|
|
run: |
|
|
python -m pip install uv
|
|
uv pip install --system -e .[dev]
|
|
- name: set google auth
|
|
uses: 'google-github-actions/auth@v0.4.0'
|
|
with:
|
|
credentials_json: '${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }}'
|
|
- name: get pandoc
|
|
run: |
|
|
sudo apt-get install -y pandoc
|
|
- name: Build documentation
|
|
run: |
|
|
cd docs
|
|
make html
|
|
- name: Push changes to gh-pages
|
|
uses: JamesIves/github-pages-deploy-action@v4
|
|
with:
|
|
folder: docs # The folder the action should deploy.
|