Merge pull request #142 from deepmind:dependabot/github_actions/ossf/… #5
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
# Continuous integration tests. | |
name: pypi-test | |
on: | |
schedule: | |
- cron: "0 2 * * 1" # Every Monday at 2am. | |
push: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/pypi-test.yml' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/pypi-test.yml' | |
workflow_run: | |
workflows: | |
- pypi-publish | |
types: | |
- completed | |
workflow_dispatch: | |
permissions: read-all | |
jobs: | |
pypi-test: | |
name: Test PyPI Distribution | |
if: ${{ github.event.workflow_run.conclusion != 'failure' }} | |
runs-on: ${{ matrix.os }} | |
env: | |
SYSTEM_VERSION_COMPAT: 0 # See https://github.com/actions/setup-python/issues/279. | |
timeout-minutes: 120 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- macos-11 | |
- macos-12 | |
- ubuntu-20.04 | |
- ubuntu-22.04 | |
python-version: | |
- '3.10' | |
steps: | |
- name: Set up Python ${{ matrix.python_version }} | |
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Python dependencies | |
run: | | |
pip install --upgrade pip | |
pip install pytest-xdist setuptools | |
- name: Install from PyPI | |
run: | | |
pip -vvv install dm-meltingpot | |
pip list | |
- name: Test installation | |
run: pytest --pyargs meltingpot |