Skip to content

pyproject.toml: Fix malformed license statement #94

pyproject.toml: Fix malformed license statement

pyproject.toml: Fix malformed license statement #94

Workflow file for this run

# SPDX-PackageName: 2ping
# SPDX-PackageSupplier: Ryan Finnie <ryan@finnie.org>
# SPDX-PackageDownloadLocation: https://github.com/rfinnie/2ping
# SPDX-FileCopyrightText: © 2010 Ryan Finnie <ryan@finnie.org>
# SPDX-License-Identifier: MPL-2.0
---
name: "ci"
"on": ["push", "pull_request"]
jobs:
build:
runs-on: "${{ matrix.os }}"
strategy:
matrix:
os:
- "macos-latest"
- "ubuntu-latest"
- "windows-latest"
python-version:
- "3.10"
- "3.12"
steps:
- uses: "actions/checkout@v4"
- name: "Python ${{ matrix.python-version }}"
uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.python-version }}"
- name: "Python dependencies"
run: |
python -mpip install tox
- name: "tox"
run: |
python -mtox