Merge pull request #60 from jaseci-labs/align #95
This file contains hidden or 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: LittleX Test | |
| on: | |
| push: | |
| branches: main | |
| pull_request: | |
| branches: main | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| # Install Jaclang and dependencies | |
| - name: Install Jaseci | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install jac-cloud | |
| pip install -r littleX_BE/requirements.txt | |
| # Run Jaclang test cases | |
| - name: Run Jaclang Tests | |
| run: | | |
| jac test littleX_BE/littleX.jac |