Update README.md #2369
Workflow file for this run
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: global.ini Tests | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "main" | |
jobs: | |
No_Missing_Keys: | |
name: Check For Missing Keys | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Execute Test | |
run: python ./.github/tests/key_test.py | |
Matching_Encoding: | |
name: Ensure Matching Encodings | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install chardet | |
- name: Execute Test | |
run: python ./.github/tests/encoding_test.py | |
Whitespace_Comma: | |
name: Check For Whitespaces Before Comma | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Execute Test | |
run: python ./.github/tests/whitespace_comma_test.py | |
Brackets: | |
name: Check For Not Closed Brackets | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Execute Test | |
run: python ./.github/tests/bracket_test.py |