Skip to content

Fix regression caused by transport.TLS not being set to True on the t… #45

Fix regression caused by transport.TLS not being set to True on the t…

Fix regression caused by transport.TLS not being set to True on the t… #45

Workflow file for this run

name: Jetforce
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install packages
run: |
pip install .[test]
- name: Run mypy
run: |
mypy jetforce/ examples/
- name: Run pytest
run: |
pytest -v tests/