aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinux-cpp-lisp <1473644+Linux-cpp-lisp@users.noreply.github.com>2021-11-17 15:52:08 -0500
committerLinux-cpp-lisp <1473644+Linux-cpp-lisp@users.noreply.github.com>2021-11-17 15:52:08 -0500
commitf658af9055647685c7713c36de4905f34e4d8508 (patch)
treee7432d6b05a24d507ab014e8256e6314d081f868
parentdb825eee5595a6ecbdee16b4b135984df5bba9f6 (diff)
CI with GitHub Actions
-rw-r--r--.github/workflows/tests.yml47
-rw-r--r--setup.cfg5
2 files changed, 52 insertions, 0 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
new file mode 100644
index 0000000..c737386
--- /dev/null
+++ b/.github/workflows/tests.yml
@@ -0,0 +1,47 @@
+name: Check Syntax and Run Tests
+
+on:
+ push:
+ branches:
+ - master
+
+ pull_request:
+ branches:
+ - master
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ python-version: [3.9]
+ torch-version: [1.8.0, 1.10.0]
+
+ 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 flake8
+ run: |
+ pip install flake8
+ - name: Lint with flake8
+ run: |
+ flake8 . --count --show-source --statistics
+ - name: Install dependencies
+ env:
+ TORCH: "${{ matrix.torch-version }}"
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ run: |
+ python -m pip install --upgrade pip
+ pip install wheel
+ pip install torch==${TORCH} -f https://download.pytorch.org/whl/cpu/torch_stable.html
+ pip install .
+ - name: Install pytest
+ run: |
+ pip install pytest
+ - name: Test with pytest
+ run: |
+ pytest --ignore=docs/ .
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..5bffaa2
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,5 @@
+[flake8]
+max-line-length = 127
+select = E,F,W,C
+ignore = E226,E501,E741,E743,C901,W503
+exclude = .eggs,*.egg,build,dist,docs