Skip to content

Commit 0073035

Browse files
committed
move to github actions
1 parent 6dcdf42 commit 0073035

3 files changed

Lines changed: 28 additions & 39 deletions

File tree

.github/workflows/build.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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

.travis.yml

Lines changed: 0 additions & 38 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# tkp_utils_python
22
Whenever 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

0 commit comments

Comments
 (0)