Skip to content

feat: improved support of python3 #10

feat: improved support of python3

feat: improved support of python3 #10

Workflow file for this run

name: Build and Test C++ and Python
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '2.7', '3.5', '3.6', '3.7', '3.10' ]
name: Build and test with Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- run: |
python -m pip install -r requirements.txt .
python test.py
yes | python -m pip uninstall dash-hash