forked from google-deepmind/meltingpot
-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (42 loc) · 1.13 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
name: test-meltingpot
on:
push:
branches:
- main
paths:
- '.github/actions/install-meltingpot/action.yml'
- '.github/workflows/test-meltingpot.yml'
- '.pylintrc'
- 'meltingpot/**'
- 'pyproject.toml'
- 'setup.py'
pull_request:
branches:
- main
paths:
- '.github/actions/install-meltingpot/action.yml'
- '.github/workflows/test-meltingpot.yml'
- '.pylintrc'
- 'meltingpot/**'
- 'pyproject.toml'
- 'setup.py'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
permissions: read-all
jobs:
test-meltingpot:
name: Test Melting Pot
runs-on: ubuntu-latest
steps:
- name: Checkout Melting Pot
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
- name: Install Melting Pot
uses: ./.github/actions/install-meltingpot
- name: Test Melting Pot
run: pytest meltingpot
- name: Lint Melting Pot
run: pylint --errors-only meltingpot
- name: Typecheck Melting Pot
run: pytype meltingpot