Skip to content

pin twine version

pin twine version #384

Workflow file for this run

name: Espn API
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.8'
- name: Install dependencies
run: python setup.py install
- name: Test with nosetests
run: python3 setup.py nosetests
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1