Skip to content

Bump torch from 1.8.0 to 2.2.0 #5

Bump torch from 1.8.0 to 2.2.0

Bump torch from 1.8.0 to 2.2.0 #5

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: test (integration)
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6", "3.9"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install ubuntu packages
run: |
sudo apt install -y clang
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
pip install ."[test]"
- name: Test
run: |
make test_integration