pyproject.toml: Fix malformed license statement #94
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
| # 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 |