Skip to content

changed upload dir and app dir #5

changed upload dir and app dir

changed upload dir and app dir #5

Workflow file for this run

---
name: Lint Action file
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint-yaml:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install yamllint
run: pip install yamllint
- name: Lint YAML files
run: yamllint . --strict