Skip to content

[Snyk] Security upgrade torch from 1.13.1 to 2.2.0 #9207

[Snyk] Security upgrade torch from 1.13.1 to 2.2.0

[Snyk] Security upgrade torch from 1.13.1 to 2.2.0 #9207

Workflow file for this run

# ----------------------------------------------------------------------------
# Copyright (C) 2021-2023 Deepchecks (https://www.deepchecks.com)
#
# This file is part of Deepchecks.
# Deepchecks is distributed under the terms of the GNU Affero General
# Public License (version 3 or later).
# You should have received a copy of the GNU Affero General Public License
# along with Deepchecks. If not, see <http://www.gnu.org/licenses/>.
# ----------------------------------------------------------------------------
#
name: Code Style
on:
push:
branches: [ main ]
pull_request:
branches: [ main, nlp-base]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
DISABLE_DEEPCHECKS_ANONYMOUS_TELEMETRY: "true"
jobs:
pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Run Pylint
run: make pylint
- name: Check import order
uses: jamescurtin/isort-action@master
with:
sortPaths: deepchecks/
docstring:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Run Pydocstyle
run: make docstring
license-check:
runs-on: ubuntu-latest
needs: docstring
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Run License eye
run: make license-check