Skip to content

Change: remove support for python 3.7 and 3.8 #1600

Change: remove support for python 3.7 and 3.8

Change: remove support for python 3.7 and 3.8 #1600

Workflow file for this run

name: Build and test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
linting:
name: Linting
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
steps:
- uses: actions/checkout@v3
- name: Check with black, pylint and pontos.version
uses: greenbone/actions/lint-python@v3
with:
version: ${{ matrix.python-version }}
packages: notus tests
test:
name: Run all tests
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
steps:
- uses: actions/checkout@v3
- name: Install poetry and dependencies
uses: greenbone/actions/poetry@v3
with:
version: ${{ matrix.python-version }}
- name: Run unit tests
run: poetry run python -m unittest