Skip to content

feat: ✨ add tit for tat strategy (#7) #38

feat: ✨ add tit for tat strategy (#7)

feat: ✨ add tit for tat strategy (#7) #38

Workflow file for this run

name: Game theory package CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')
- name: Test with pytest
run: |
pytest