Skip to content

Add pylint github action file. #28

Add pylint github action file.

Add pylint github action file. #28

Workflow file for this run

# .github/workflows/main.yml
name: Main Workflow
on:
push:
branches:
- main
pull_request:
jobs:
prepare-variables-job:
runs-on: ubuntu-latest
outputs:
tensorflow_version: ${{ steps.prepare-variables.outputs.tf_version }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Check folder
run: ls ./
- id: prepare-variables
name: Prepare Variables
run: |
echo "tf_version=2.10.0" >> $GITHUB_OUTPUT
call-setup-yml:
needs: prepare-variables-job
uses: ./.github/workflows/setup.yml
with:
tf_version: ${{ needs.prepare-variables-job.outputs.tensorflow_version }}