Fix a bug in resizing in Kubric point tracking data augmentation. #212
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
# execute linter on {push, pull request}, only whenever python file changes are detected | |
name: pylint.yml | |
on: | |
pull_request: | |
paths: '**.py' | |
jobs: | |
execute: | |
runs-on: ubuntu-latest | |
container: kubricdockerhub/kubruntudev:latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Lint with pylint | |
run: | | |
pylint --version | |
pylint --rcfile=.pylintrc ./kubric |