From 0d7e2eefc7107aea774adbf353f138c3fcb131c9 Mon Sep 17 00:00:00 2001 From: Kurt McKee Date: Wed, 14 Jun 2023 11:10:52 -0500 Subject: [PATCH] Run the test suite on py38-py311 in CI --- .github/workflows/build.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 69e1b26..8fb1805 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,17 +33,18 @@ jobs: steps: - uses: actions/setup-python@v4 with: - python-version: 3.8 + python-version: | + 3.11 + 3.10 + 3.9 + 3.8 - uses: actions/checkout@v3 with: fetch-depth: 0 # For sonar - name: Install dependencies - run: | - pip install . - pip install pytest pytest-cov pandas + run: pip install tox - name: Run tests - run: | - pytest --cov=dsp --cov-report xml:coverage.xml + run: tox - name: SonarCloud Scan uses: SonarSource/sonarcloud-github-action@master