Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FEAT: Added unit tests to language JSON files #40

Merged
merged 13 commits into from
Aug 24, 2023
20 changes: 20 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Run tests

on: push

jobs:
run-tests:
runs-on: ubuntu-latest

steps:
- name: Checkout into Repository
uses: actions/checkout@v3

- name: Setup Python and cache req
uses: actions/setup-python@v4
with:
python-version: 3.10.4

- name: Run Tests
run: python tests.py
shell: sh
Loading