forked from google-deepmind/meltingpot
-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (54 loc) · 1.33 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
# 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
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@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435
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