OPSEXP-2176 Allow repo_db_url to override search enterprise reindex configuration #1434
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pre-commit | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
id: setup-python | |
with: | |
python-version-file: .python-version | |
cache: pipenv | |
- name: Install python packages | |
uses: Alfresco/alfresco-build-tools/.github/actions/[email protected] | |
with: | |
python-version: ${{ steps.setup-python.outputs.python-version }} | |
- name: Install and cache ansible galaxy dependencies | |
uses: ./.github/actions/galaxy | |
- name: Cache pre-commit | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pre-commit | |
key: ${{ runner.os }}-precommit-${{ hashFiles('.pre-commit-config.yaml') }} | |
- uses: pre-commit/[email protected] |