forked from google-deepmind/meltingpot
-
Notifications
You must be signed in to change notification settings - Fork 0
71 lines (63 loc) · 1.63 KB
/
pypi-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# 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:
inputs:
version:
description: 'Version to test'
type: string
default: ''
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: 180
strategy:
fail-fast: false
matrix:
os:
- macos-12
- macos-latest
- ubuntu-20.04
- ubuntu-latest
python-version:
- '3.11'
steps:
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
pip install --upgrade pip
pip install --upgrade setuptools
pip install pytest-xdist
- name: Install from PyPI
run: |
VERSION="${{github.event.inputs.version}}"
pip -vvv install "dm-meltingpot${VERSION:+==$VERSION}"
pip list
- name: Test installation
run: |
pytest -n auto --pyargs meltingpot