diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
new file mode 100644
index 0000000..09254e6
--- /dev/null
+++ b/.github/workflows/tests.yml
@@ -0,0 +1,23 @@
+name: tests
+
+on: [pull_request]
+
+jobs:
+ test:
+ 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 camelot with dependencies
+ run: |
+ make install
+ - name: Test with pytest
+ run: |
+ make test
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100755
index e370649..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,29 +0,0 @@
-sudo: true
-language: python
-cache: pip
-addons:
- apt:
- update: true
-install:
- - make install
-jobs:
- include:
- - stage: test
- script:
- - make test
- python: '3.6'
- - stage: test
- script:
- - make test
- python: '3.7'
- dist: xenial
- - stage: test
- script:
- - make test
- python: '3.8'
- dist: xenial
- - stage: coverage
- python: '3.8'
- script:
- - make test
- - codecov --verbose
diff --git a/README.md b/README.md
index 8324b9f..a3f7f88 100644
--- a/README.md
+++ b/README.md
@@ -1,14 +1,13 @@
-
+tests
# Camelot: PDF Table Extraction for Humans
-[](https://travis-ci.org/camelot-dev/camelot) [](https://camelot-py.readthedocs.io/en/master/)
+ [](https://camelot-py.readthedocs.io/en/master/)
[](https://codecov.io/github/camelot-dev/camelot?branch=master)
[](https://pypi.org/project/camelot-py/) [](https://pypi.org/project/camelot-py/) [](https://pypi.org/project/camelot-py/) [](https://gitter.im/camelot-dev/Lobby)
-[](https://github.com/ambv/black) [](https://deepsource.io/gh/camelot-dev/camelot/?ref=repository-badge)
-
+[](https://github.com/ambv/black)
**Camelot** is a Python library that can help you extract tables from PDFs!