From f658af9055647685c7713c36de4905f34e4d8508 Mon Sep 17 00:00:00 2001 From: Linux-cpp-lisp <1473644+Linux-cpp-lisp@users.noreply.github.com> Date: Wed, 17 Nov 2021 15:52:08 -0500 Subject: CI with GitHub Actions --- .github/workflows/tests.yml | 47 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/tests.yml (limited to '.github/workflows/tests.yml') 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/ . -- cgit v1.2.3