Skip to content

Update README.md

Update README.md #105

Workflow file for this run

name: Test python-json-logger
on:
push:
branches:
- master
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
pull_request:
types: [opened, reopened]
jobs:
test:
runs-on: "ubuntu-20.04" #Moving down to 20.04 (latest is 22.04) because of python3.6 support
strategy:
fail-fast: false
matrix:
python-version: ["pypy-3.8", "pypy-3.9", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test with tox
run: tox