fix: typo #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Turtle Files | |
on: | |
push: | |
jobs: | |
checkttl: | |
name: Checks Turtle Files | |
runs-on: ubuntu-latest | |
steps: | |
- name: Perfom Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
cache: "pip" | |
- name: Install Python Packages | |
run: pip install -r requirements.txt | |
- name: run check script | |
run: python scripts/well_formed_check.py |