We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dbdb85 commit b64a78dCopy full SHA for b64a78d
2 files changed
.github/workflows/main.yml
@@ -0,0 +1,27 @@
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
README.rst
@@ -2,10 +2,11 @@
Text progress bar library for Python.
##############################################################################
-Travis status:
+Build status:
-.. image:: https://travis-ci.org/WoLpH/python-progressbar.svg?branch=master
- :target: https://travis-ci.org/WoLpH/python-progressbar
+.. image:: https://github.com/WoLpH/python-progressbar/actions/workflows/main.yml/badge.svg
+ :alt: python-progressbar test status
+ :target: https://github.com/WoLpH/python-progressbar/actions
Coverage:
0 commit comments