File tree Expand file tree Collapse file tree 2 files changed +31
-3
lines changed Expand file tree Collapse file tree 2 files changed +31
-3
lines changed Original file line number Diff line number Diff line change 1+ name : tox
2+
3+ on :
4+ push :
5+ pull_request :
6+ workflow_dispatch :
7+
8+ jobs :
9+ build :
10+ runs-on : ubuntu-latest
11+ timeout-minutes : 10
12+ strategy :
13+ matrix :
14+ python-version : [3.6, 3.7, 3.8, 3.9]
15+
16+ steps :
17+ - uses : actions/checkout@v2
18+ - name : Set up Python ${{ matrix.python-version }}
19+ uses : actions/setup-python@v2
20+ with :
21+ python-version : ${{ matrix.python-version }}
22+ - name : Install dependencies
23+ run : |
24+ python -m pip install --upgrade pip
25+ pip install tox tox-gh-actions
26+ - name : Test with tox
27+ run : tox
Original file line number Diff line number Diff line change 22Text progress bar library for Python.
33##############################################################################
44
5- Travis status:
5+ Build status:
66
7- .. image :: https://travis-ci.org/WoLpH/python-progressbar.svg?branch=master
8- :target: https://travis-ci.org/WoLpH/python-progressbar
7+ .. image :: https://github.com/WoLpH/python-progressbar/actions/workflows/main.yml/badge.svg
8+ :alt: python-progressbar test status
9+ :target: https://github.com/WoLpH/python-progressbar/actions
910
1011Coverage:
1112
You can’t perform that action at this time.
0 commit comments