From c043726e96e695cabb89d89b1d0b7899d73f1c11 Mon Sep 17 00:00:00 2001
From: Adam Williamson <awilliam@redhat.com>
Date: Thu, 9 Feb 2023 14:12:49 -0800
Subject: [PATCH] Switch from travis-ci to Github Actions for CI

This drops the travis-ci config and adds config for running tests
via tox in Github Actions. It also updates the list of envs in
tox.ini for recent Python 3 versions.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
---
 .github/dependabot.yml    |  7 +++++++
 .github/workflows/tox.yml | 39 +++++++++++++++++++++++++++++++++++++++
 .travis.yml               | 25 -------------------------
 tox.ini                   |  2 +-
 4 files changed, 47 insertions(+), 26 deletions(-)
 create mode 100644 .github/dependabot.yml
 create mode 100644 .github/workflows/tox.yml
 delete mode 100644 .travis.yml

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 0000000..900df32
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,7 @@
+---
+version: 2
+updates:
+  - package-ecosystem: "github-actions"
+    directory: "/"
+    schedule:
+      interval: "daily"
diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml
new file mode 100644
index 0000000..4b7f969
--- /dev/null
+++ b/.github/workflows/tox.yml
@@ -0,0 +1,39 @@
+---
+name: Test Python package with Tox
+
+on: [pull_request]
+
+jobs:
+  build:
+    runs-on: ${{ matrix.os }}
+    strategy:
+      max-parallel: 4
+      fail-fast: false
+      matrix:
+        python-version:
+          - "3.6"
+          - "3.7"
+          - "3.8"
+          - "3.9"
+          - "3.10"
+          - "3.11"
+          - "3.12.0-alpha - 3.12.0"
+        include:
+          - os: "ubuntu-latest"
+          - os: "ubuntu-20.04"
+            python-version: "3.6"
+
+    steps:
+      - uses: actions/checkout@v3
+        with:
+          fetch-depth: 0
+      - name: Set up Python ${{ matrix.python-version }}
+        uses: actions/setup-python@v4.5.0
+        with:
+          python-version: ${{ matrix.python-version }}
+      - name: Install dependencies
+        run: |
+          python -m pip install --upgrade pip
+          pip install tox tox-gh-actions
+      - name: Test with tox
+        run: tox
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index f65abfb..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-language: python
-python:
-- 2.7
-- 3.5
-- 3.6
-- 3.7
-- 3.8
-install:
-- python setup.py install
-- pip install coveralls flake8
-script:
-- python setup.py test
-- flake8 mwclient
-after_success:
-- coveralls
-deploy:
-  provider: pypi
-  user: danmichaelo
-  password:
-    secure: iRaoF9UNIIzwNR2SP60zL7Ub33lgCTYddk4JkpfNNjz/olZaUEGTbrpttq1wQ9thzwYBgp6PbwspgEdIQWOgDLlT75XowkeLpp7UzRNwKjf7gUVaMJuAYtmhbofaWZFGft3zSbsDEt19z8mqepQXSUUN7dcfH4QVUvishElQT5k=
-  distributions: "sdist bdist_wheel"
-  on:
-    tags: true
-    repo: mwclient/mwclient
-    python: '3.8'
diff --git a/tox.ini b/tox.ini
index 3d38991..fdd9144 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
 [tox]
-envlist = py27,py35,py36,py37,py38,flake
+envlist = py27,py35,py36,py37,py38,py39,py310,py311,py312,flake
 
 [testenv]
 deps =
-- 
GitLab