From 919e1e5bbd0db9796da5d07353a2bd78339ad09e Mon Sep 17 00:00:00 2001 From: Zane Selvans Date: Fri, 13 Oct 2023 19:03:02 -0600 Subject: [PATCH] Remove redundant tox workflows. --- .github/workflows/test.yml | 36 -------------------------------- .github/workflows/tox-pytest.yml | 2 +- 2 files changed, 1 insertion(+), 37 deletions(-) delete mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index 1a6496f..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: Test - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - build: - - runs-on: ${{ matrix.os }} - strategy: - matrix: - python-version: [2.7, 3.6, 3.7, 3.8] - os: [ubuntu-latest, macOS-latest, windows-latest] - - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install flake8 pytest check-manifest sphinx - - name: Install the package - run: pip install -q -e .[dev] - - name: Run tests - run: | - pytest . -rs -q - check-manifest -v - sphinx-build docs _build -q -E - flake8 dbfread diff --git a/.github/workflows/tox-pytest.yml b/.github/workflows/tox-pytest.yml index afabbc4..cb8db83 100644 --- a/.github/workflows/tox-pytest.yml +++ b/.github/workflows/tox-pytest.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: [3.6, 3.7, 3.8] + python-version: [3.6, 3.7, 3.8, 3.9, 3.10, 3.11] steps: - uses: actions/checkout@v2