Skip to content
This repository was archived by the owner on Dec 21, 2024. It is now read-only.

Commit ef2def3

Browse files
committed
Merge branch 'master' into mypy
2 parents 2406a0d + a74aa86 commit ef2def3

File tree

2 files changed

+6
-11
lines changed

2 files changed

+6
-11
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,14 @@
11
name: Test python-json-logger
22

3-
on:
4-
push:
5-
branches: [ master ]
6-
pull_request:
7-
branches: [ master ]
8-
9-
workflow_dispatch:
3+
on: [push, pull_request, workflow_dispatch]
104

115
jobs:
126
test:
137
runs-on: ubuntu-latest
148
strategy:
159
fail-fast: false
1610
matrix:
17-
python-version: [pypy3, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10.0-beta.4]
11+
python-version: [pypy-3.6, pypy-3.7, pypy-3.8, 3.6, 3.7, 3.8, 3.9, 3.10.0-beta.4]
1812

1913
steps:
2014
- uses: actions/checkout@v2

tox.ini

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
[tox]
2-
envlist = pypy3, py35, py36, py37, py38, py39, py310
2+
envlist = pypy36, pypy37, pypy38, py36, py37, py38, py39, py310
33

44
[gh-actions]
55
python =
6-
pypy-3: pypy3
7-
3.5: py35
6+
pypy-3.6: pypy36
7+
pypy-3.7: pypy37
8+
pypy-3.8: pypy38
89
3.6: py36
910
3.7: py37
1011
3.8: py38

0 commit comments

Comments
 (0)