Skip to content

fixed workflow

fixed workflow #8

Workflow file for this run

name: Validate TOML Files
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
permissions:
contents: read
jobs:
validate:
runs-on: ubuntu-latest
defaults:
run:
working-directory: .github/workflows/
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install Dependencies
run: python -m pip install .
- name: Validate Files
run: python validate_toml.py