Skip to content

Commit

Permalink
Switched travis-ci to GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Kolkov authored and litleleprikon committed Mar 4, 2021
1 parent 65aff59 commit 9bbc453
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 14 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Python

on: [push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: make deps
- name: Test
run: make test
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,11 @@
classifiers=[
'Development Status :: 4 - Beta',

'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',

'Operating System :: OS Independent',
'Intended Audience :: Developers',
Expand Down

0 comments on commit 9bbc453

Please sign in to comment.