Skip to content

35912: Upgrade Tensorflow #27

35912: Upgrade Tensorflow

35912: Upgrade Tensorflow #27

Workflow file for this run

---
name: Pylint
on: [push]
jobs:
linting:
runs-on: ubuntu-latest
strategy:
matrix:
ai_framework: ["Tensorflow", "PyTorch"]
steps:
- uses: actions/checkout@v3
- name: Pylint ${{ matrix.ai_framework }} files
run: |
pip3 install pylint cookiecutter python-dotenv loguru
cookiecutter . --no-input image=${{ matrix.ai_framework }} --config-file tests/.cookiecutterrc
find ./acme -name "*.py" | xargs pylint