Skip to content

Commit

Permalink
Drop py36, py37, and py39 from github runners
Browse files Browse the repository at this point in the history
These are no longer needed on the stable/wallaby branch.

(cherry picked from commit 6122daa)
(cherry picked from commit 772f976)
(cherry picked from commit 59811f3)
  • Loading branch information
Corey Bryant committed Dec 12, 2023
1 parent 5dcdd26 commit f987b1b
Showing 1 changed file with 1 addition and 26 deletions.
27 changes: 1 addition & 26 deletions .github/workflows/tox.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,36 +5,11 @@ on:
- pull_request

jobs:
build_old_versions:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ['3.6', '3.7']

steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install codecov tox tox-gh-actions
- name: Lint with tox
run: tox -e pep8
- name: Test with tox
run: tox -e py
- name: Codecov
run: |
set -euxo pipefail
codecov --verbose --gcov-glob unit_tests/*
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9]
python-version: [3.8]

steps:
- uses: actions/checkout@v1
Expand Down

0 comments on commit f987b1b

Please sign in to comment.