Skip to content

Commit 0184a5d

Browse files
authored
Update test-meltingpot.yml
1 parent 83684d3 commit 0184a5d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/test-meltingpot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
paths:
88
- '.github/actions/install-meltingpot/action.yml'
99
- '.github/workflows/test-meltingpot.yml'
10+
- '.pylintrc'
1011
- 'meltingpot/**'
1112
- 'pyproject.toml'
1213
- 'setup.py'
@@ -16,6 +17,7 @@ on:
1617
paths:
1718
- '.github/actions/install-meltingpot/action.yml'
1819
- '.github/workflows/test-meltingpot.yml'
20+
- '.pylintrc'
1921
- 'meltingpot/**'
2022
- 'pyproject.toml'
2123
- 'setup.py'
@@ -45,9 +47,17 @@ jobs:
4547
steps:
4648
- name: Checkout Melting Pot
4749
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
50+
4851
- name: Install Melting Pot
4952
uses: ./.github/actions/install-meltingpot
5053
with:
5154
python-version: ${{ matrix.python-version }}
55+
5256
- name: Test Melting Pot
5357
run: pytest meltingpot
58+
59+
- name: Run PyLint on Melting Pot
60+
run: pylint --errors-only meltingpot
61+
62+
- name: Run PyType on Melting Pot
63+
run: pytype meltingpot

0 commit comments

Comments
 (0)