Browse Source

Comment out PyPy for now

pull/341/head
Christian Clauss 2 years ago committed by GitHub
parent
commit
c79d4bad0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      .github/workflows/python.yml

13
.github/workflows/python.yml

@ -1,11 +1,10 @@
# https://beta.ruff.rs
name: python
on: [pull_request, push]
#on:
# push:
# branches: [master]
# pull_request:
# branches: [master]
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
ruff:
runs-on: ubuntu-latest
@ -17,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "pypy-3.9"]
python-version: ["3.8", "3.9", "3.10", "3.11"] # , "pypy-3.9"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

Loading…
Cancel
Save