Skip to content

Merge pull request #354 from Jaseci-Labs/final_attempt_i_think #6

Merge pull request #354 from Jaseci-Labs/final_attempt_i_think

Merge pull request #354 from Jaseci-Labs/final_attempt_i_think #6

Workflow file for this run

name: Run Tests
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install pytest
pip install pygame
- name: Run tests
run: pytest