Start-Out/todo-or-not

Improve test suite with matrices

开放

#379 创建于 2024年9月16日

 (0 条评论) (0 个反应) (0 位负责人)Python (5 个派生)auto 404
devopsenhancementhelp wantedtesting

仓库指标

星标
 (5 个星标)
PR 合并指标
 (PR 指标待抓取)

描述

Use matrices to test multiple versions of python, and multiple operating systems

Reference:

## ... ##
jobs:
  test_suite:
    name: Run test suite steps
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-latest, windows-latest, macos-latest]
        python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
    environment: testing
    steps:
      - uses: actions/checkout@v3
      - name: Set up Python ${{ matrix.python-version }}
        uses: actions/setup-python@v3
        with:
## ... ##

贡献者指南