Skip to content

Remove support of python3.7/3.8 #37

Remove support of python3.7/3.8

Remove support of python3.7/3.8 #37

Workflow file for this run

name: Python source code assessment 🐍
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Static code analysis
run: |
pip install -r requirements-dev.txt
./analyse-source-code.sh
- name: Upload coverage data to coveralls.io
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
coveralls --service=github