Enable python 3.11 and resolve TLS issues #1

Merged
PeterSurda merged 8 commits from lee.miller/MiNode:ssl into v0.3 2024-06-25 00:49:12 +02:00
Showing only changes of commit fd68c6ebe2 - Show all commits

View File

@ -1,44 +1,20 @@
name: Blind Test name: Testing
on: [push]
on: push
jobs: jobs:
default: default:
runs-on: ubuntu-20.04
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.8]
include:
- os: ubuntu-latest
python-version: 3.9
steps: steps:
- uses: actions/checkout@v2 - name: Install dependencies
- name: Set up Python ${{ matrix.python-version }} run: |
uses: actions/setup-python@v2 apt-get update
with: apt-get install -yq --no-install-suggests --no-install-recommends \
python-version: ${{ matrix.python-version }} python3-dev python3-pip python3-venv python-is-python3
- name: Install python dependencies pip install setuptools wheel
run: | pip install --upgrade pip tox virtualenv
python -m pip install --upgrade pip - name: Check out repository code
pip install wheel uses: actions/checkout@v3
pip install bandit flake8 pylint - name: Quick lint
pip install -r requirements.txt run: tox -e lint-basic
python setup.py install - name: Run tests
- name: Lint run: tox
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.8' }}
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 minode --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 minode --count --statistics
pylint minode --exit-zero --rcfile=tox.ini
bandit -r --exit-zero -x tests minode
- name: Test
run: |
export PYTHONWARNINGS=all
coverage run -a -m tests
- name: Summary
run: coverage report