forked from google-deepmind/meltingpot
-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (49 loc) · 1.32 KB
/
test-meltingpot.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
name: test-meltingpot
on:
push:
branches:
- main
paths:
- '.github/actions/install-meltingpot/action.yml'
- '.github/workflows/test-meltingpot.yml'
- 'meltingpot/**'
- 'setup.py'
- 'pyproject.toml'
pull_request:
branches:
- main
paths:
- '.github/actions/install-meltingpot/action.yml'
- '.github/workflows/test-meltingpot.yml'
- 'meltingpot/**'
- 'setup.py'
- 'pyproject.toml'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
permissions: read-all
jobs:
pytest:
name: Test Melting Pot
runs-on: ${{ matrix.os }}
env:
SYSTEM_VERSION_COMPAT: 0 # See https://github.com/actions/setup-python/issues/279.
timeout-minutes: 120
strategy:
fail-fast: ${{ github.event_name != 'workflow_dispatch' }}
matrix:
os:
- macos-11
- ubuntu-20.04
python-version:
- '3.10'
steps:
- name: Checkout Melting Pot
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3
- name: Install Melting Pot
uses: ./.github/actions/install-meltingpot
with:
python-version: ${{ matrix.python-version }}
- name: Test Melting Pot
run: pytest meltingpot