File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Build Status
2+
3+ on : [push]
4+
5+ jobs :
6+ build :
7+ runs-on : ubuntu-latest
8+
9+ strategy :
10+ matrix :
11+ python-version : [3.6, 3.7, 3.8]
12+
13+ steps :
14+ - uses : actions/checkout@v2
15+ - name : Set up Python ${{ matrix.python-version }}
16+ uses : actions/setup-python@v2
17+ with :
18+ python-version : ${{ matrix.python-version }}
19+ - name : Install dependencies
20+ run : |
21+ python -m pip install -e .[dev]
22+ - name : Lint
23+ run : |
24+ make lint
25+ - name : Test
26+ run : |
27+ make tests
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# tkp_utils_python
22Whenever I have to write the same code over and over again, I'll put it here
33
4- [ ![ Build Status] ( https://travis-ci.org /timkpaine/tkp_utils_python.svg?branch=master )] ( https://travis-ci.org /timkpaine/tkp_utils_python )
4+ [ ![ Build Status] ( https://github.com /timkpaine/tkp_utils_python/workflows/Build%20Status/badge .svg )] ( https://github.com /timkpaine/tkp_utils_python/actions/ )
55[ ![ PyPI] ( https://img.shields.io/pypi/v/tkp_utils.svg )] ( https://pypi.python.org/pypi/tkp_utils )
66[ ![ PyPI] ( https://img.shields.io/pypi/l/tkp_utils.svg )] ( https://pypi.python.org/pypi/tkp_utils )
77
You can’t perform that action at this time.
0 commit comments