Skip to content

Update README.md and remove files #1710

Update README.md and remove files

Update README.md and remove files #1710

Workflow file for this run

name: Test Python 3.X
on:
push:
branches:
- main
pull_request:
jobs:
test-py:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
py_vers: [ "3.7", "3.8", "3.9", "3.10" ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.py_vers }}
cache: 'pip'
- run: make setup_nightly
- run: make develop
- run: make test
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true