Skip to content

feat:try python3.13 #591

feat:try python3.13

feat:try python3.13 #591

Workflow file for this run

name: Json2xml
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, pypy-3.8, pypy-3.9, pypy-3.10, '3.10', '3.11' , '3.12.0', '3.13']
allow-prereleases: true

Check failure on line 16 in .github/workflows/pythonpackage.yml

View workflow run for this annotation

GitHub Actions / Json2xml

Invalid workflow file

The workflow is not valid. .github/workflows/pythonpackage.yml (Line: 16, Col: 28): Unexpected value 'true'
os: [
ubuntu-latest,
windows-latest,
macos-13,
]
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 -r requirements-dev.txt
pip install .
- name: Unit tests
run: |
coverage run -m pytest
coverage xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3