Skip to content

Create azure-functions-app-nodejs.yml #92

Create azure-functions-app-nodejs.yml

Create azure-functions-app-nodejs.yml #92

Workflow file for this run

name: Pylint
on: [push]
jobs:
build-and-deploy:
if: github.repository == 'Tatsuru-Kikuchi/OG-JPN'
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')