We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b4a41c commit 4a35cd9Copy full SHA for 4a35cd9
.github/workflows/python-app.yml
@@ -15,11 +15,12 @@ jobs:
15
runs-on: ubuntu-latest
16
17
steps:
18
- - uses: actions/checkout@v2
19
- - name: Set up Python 3.8
20
- uses: actions/setup-python@v2
+ - uses: actions/checkout@v3
+ - name: Set up Pypy 3.9
+ uses: actions/setup-python@v4
21
with:
22
- python-version: 3.8
+ python-version: 'pypy3.9'
23
+ cache: 'pip' # caching pip dependencies
24
- name: Install dependencies
25
run: |
26
python -m pip install --upgrade pip
@@ -33,4 +34,4 @@ jobs:
33
34
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
35
- name: Test
36
- cd tests && python clean_draws.py
37
+ bash tools/quick_tests.sh ./sunfish.py
0 commit comments