Skip to content

drop obsolete python versions; add 3.10 and 3.11 #30

drop obsolete python versions; add 3.10 and 3.11

drop obsolete python versions; add 3.10 and 3.11 #30

Workflow file for this run

---
name: Quality Assurance
on:
- pull_request
- push
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- pypy3
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip
restore-keys: |
${{ runner.os }}-pip
- run: python -m pip install --upgrade pip setuptools tox
- run: tox -e py
CodeQL:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: 'python'
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
other:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- environment: doclinks
- environment: doctest
- environment: linting
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip
restore-keys: |
${{ runner.os }}-pip
- run: python -m pip install --upgrade pip setuptools tox
- run: tox -e ${{ matrix.environment }}
...