mirror of
https://github.com/sivel/speedtest-cli.git
synced 2026-08-29 13:01:37 +00:00
fixed tox issues:
* removed pypy env as it just duplicats the default testenv * added github action
This commit is contained in:
parent
42e96b13dd
commit
2882327c84
2 changed files with 26 additions and 8 deletions
25
.github/workflows/python-package.yaml
vendored
Normal file
25
.github/workflows/python-package.yaml
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
name: Python package
|
||||
|
||||
on:
|
||||
- push
|
||||
- pull_request
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python: [2.7, 3.7, 3.8]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: ${{ matrix.python }}
|
||||
- name: Install Tox and any other packages
|
||||
run: pip install tox
|
||||
- name: Run Tox
|
||||
# Run tox using the version of Python in `PATH`
|
||||
run: tox -e py
|
||||
Loading…
Add table
Add a link
Reference in a new issue