Fixing the torch and sbi version to the last actively tested ones #1111
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linting | |
on: [push, pull_request] | |
jobs: | |
black: | |
name: Checking Formatting with Black | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
- name: Run black | |
uses: psf/black@stable | |
with: | |
src: "Pyrado setup_deps.py RcsPySim/setup.py" | |
isort: | |
name: Checking Import Order with isort | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
- name: Install dependencies | |
run: python -m pip install --upgrade isort | |
- name: Run isort | |
run: "isort --check --diff Pyrado setup_deps.py RcsPySim/setup.py" |