Feat/check-v2 common packages under open cepk #14
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: tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
# ---------------------- | |
# JOB 1: Run unit tests | |
# ---------------------- | |
tests-unit: | |
name: tests-unit | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v5.1.0 | |
with: | |
python-version: 3.11 | |
- name: Run tests | |
run: python3 -m unittest hooks.find_and_replace_strings_package.tests.test_main | |
# ---------------------- | |
# JOB 2: Run python package end to end test | |
# ---------------------- | |
test-package-e2e: | |
name: test-package-e2e | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v5.1.0 | |
with: | |
python-version: 3.11 | |
- name: Run test-package-e2e.sh | |
run: | | |
cd hooks/find_and_replace_strings_package/tests-package-e2e | |
./test-package-e2e.sh | |
# ---------------------- | |
# JOB 3: Run pre-commit hook test | |
# ---------------------- | |
test-pre-commit-hook: | |
name: test-pre-commit-hook | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v5.1.0 | |
with: | |
python-version: 3.11 | |
- name: Run test-pre-commit-hook.sh | |
run: | | |
pip install pre-commit | |
cd hooks/find_and_replace_strings_package/tests-pre-commit-hook | |
./test-pre-commit-hook.sh |