[core,json,orjson,msgspec] Remove use of str_to_object #156
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test python-json-logger | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
name: "Python Lint" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: astral-sh/setup-uv@v3 | |
- name: Lint with tox | |
run: uvx tox -e lint | |
test: | |
name: "Python Test ${{ matrix.os }}" | |
needs: [lint] | |
runs-on: "${{ matrix.os }}" | |
strategy: | |
fail-fast: false # allow tests to run on all platforms | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: astral-sh/setup-uv@v3 | |
- name: Test with tox | |
run: uvx tox |