Skip to content

feat: improved support of python3 #11

feat: improved support of python3

feat: improved support of python3 #11

Workflow file for this run

name: Build and Test C++ and Python
on: [push, pull_request]
jobs:
build:
strategy:

Check failure on line 7 in .github/workflows/build-test.yaml

View workflow run for this annotation

GitHub Actions / Build and Test C++ and Python

Invalid workflow file

The workflow is not valid. .github/workflows/build-test.yaml (Line: 7, Col: 5): Required property is missing: runs-on
matrix:
python-version: [ '2.7', '3.5', '3.6', '3.7', '3.10' ]
os: ['ubuntu-20.10', 'ubuntu-latest']
exclude:
- python-version: 3.5
os: ubuntu-latest
- python-version: 3.6
os: ubuntu-latest
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