Skip to content

Commit 5ad4468

Browse files
authored
Merge pull request #22 from ApplauseOSS/chore/pr-tests
Run tox tests on PR
2 parents a09882b + 717ed3d commit 5ad4468

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

.github/workflows/pr.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: PR checks
2+
on:
3+
pull_request:
4+
branches:
5+
- master
6+
jobs:
7+
Run-Tox:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/setup-python@v2
11+
with:
12+
python-version: '3.8'
13+
- uses: actions/checkout@v2
14+
- run: pip3 install tox
15+
- run: tox

requirements-dev.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ pycmd==1.2
55
flake8==3.0.4
66
isort==4.2.5
77
flake8-isort==2.0.1
8-
ipython==5.0.0
9-
ipdb==0.10.1
8+
ipython==7.33.0
9+
ipdb==0.13.9

0 commit comments

Comments
 (0)