fix: 矩形外圈图片裁切bug修复 #95
This file contains 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: build and test | |
on: | |
push: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build-and-test: | |
name: build-and-test | |
strategy: | |
matrix: | |
include: | |
- { name: Linux, python: '3.11', os: ubuntu-latest } | |
- { name: Windows, python: '3.11', os: windows-latest } | |
- { name: Mac, python: '3.11', os: macos-latest } | |
- { name: '3.10', python: '3.10', os: ubuntu-latest } | |
- { name: '3.9', python: '3.9', os: ubuntu-latest } | |
- { name: '3.8', python: '3.8', os: ubuntu-latest } | |
- { name: '3.7', python: '3.7', os: ubuntu-latest } | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- run: python -m pip install --upgrade pip | |
- run: pip install tox tox-gh-actions | |
- run: tox |