Skip to content

feat(env): implement game env #69

feat(env): implement game env

feat(env): implement game env #69

Workflow file for this run

name: Test and static type check
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pipenv'
- name: Install dependencies
run: |
curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
pipenv install --dev
- name: Run tests
run: |
pipenv run pytest
- name: Run static type checker
run: |
pipenv run mypy --install-types --non-interactive