aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-03-11 21:17:59 +0500
committerEgor Tensin <Egor.Tensin@gmail.com>2022-03-11 21:17:59 +0500
commit488e3c818b27727092c0c422a4799cf40aae989c (patch)
tree29ae8e4bc7492e1bf09b21acb28849126d7263b1 /.github/workflows/ci.yml
parentadd app.py & server.py (diff)
downloadvoid-488e3c818b27727092c0c422a4799cf40aae989c.tar.gz
void-488e3c818b27727092c0c422a4799cf40aae989c.zip
add GitHub Actions workflow
Diffstat (limited to '')
-rw-r--r--.github/workflows/ci.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 0000000..f0e1d49
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,23 @@
+name: CI
+
+on:
+ push:
+ pull_request:
+ workflow_dispatch:
+
+jobs:
+ test:
+ strategy:
+ matrix:
+ python-version: [3.6, 3.7, 3.8, 3.9, 3.x]
+ runs-on: ubuntu-latest
+ name: 'Python ${{ matrix.python-version }}'
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+ - name: Set up Python
+ uses: actions/setup-python@v2
+ with:
+ python-version: '${{ matrix.python-version }}'
+ - name: Run tests
+ run: ./test/test.sh