Skip to content

Add pylint github action file. #18

Add pylint github action file.

Add pylint github action file. #18

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 ./.github/workflows/
- id: prepare-variables
name: Prepare Variables
run: |
echo "##[set-output name=tf_version;]2.10.0"
call-setup-yml:
needs: prepare-variables-job
uses: ./.github/workflows/setup.yml
with:
tf_version: ${{ needs.prepare-variables-job.outputs.tensorflow_version }}