Move configs definition to the Gemma models #593
Workflow file for this run
This file contains hidden or 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: Unittests & Auto-publish | |
# Allow to trigger the workflow manually (e.g. when deps changes) | |
on: [push, workflow_dispatch] | |
jobs: | |
pytest-job: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
# Install deps | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
# Uncomment to cache of pip dependencies (if tests too slow) | |
# cache: pip | |
# cache-dependency-path: '**/pyproject.toml' | |
- run: pip --version | |
- run: pip install -e .[dev] | |
- run: pip freeze | |
# Run tests (in parallel) | |
# * `/tests/` subfolder contains end-to-end tests which are to big to run. | |
# * Sampler and transformer tests are disabled because they are using the legacy API. | |
# TODO(epot): Restore _interceptors_test. | |
- name: Run core tests | |
run: | | |
pytest -vv -n auto \ | |
--ignore=gemma/gm/tests/ \ | |
--ignore=gemma/peft/_interceptors_test.py \ | |
--ignore=gemma/sampler_test.py \ | |
--ignore=gemma/transformer_test.py | |
# Auto-publish when version is increased | |
publish-job: | |
# Only try to publish if: | |
# * Repo is self (prevents running from forks) | |
# * Branch is `main` | |
if: | | |
github.repository == 'google-deepmind/gemma' | |
&& github.ref == 'refs/heads/main' | |
needs: pytest-job # Only publish after tests are successful | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
timeout-minutes: 30 | |
steps: | |
# Publish the package (if local `__version__` > pip version) | |
- uses: etils-actions/pypi-auto-publish@v1 | |
with: | |
pypi-token: ${{ secrets.PYPI_API_TOKEN }} | |
gh-token: ${{ secrets.GITHUB_TOKEN }} | |
parse-changelog: true |