Start-Out/todo-or-not

Improve test suite with matrices

Offen

#379 geöffnet am 16.09.2024

 (0 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)Python (5 Forks)auto 404
devopsenhancementhelp wantedtesting

Repository-Metriken

Stars
 (5 Sterne)
PR-Merge-Metriken
 (Keine gemergten PRs in 30 T)

Beschreibung

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:
## ... ##

Contributor Guide