Skip to content

chore: 🔖 bump project 0.3.1...0.3.2 #41

chore: 🔖 bump project 0.3.1...0.3.2

chore: 🔖 bump project 0.3.1...0.3.2 #41

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.10
uses: actions/setup-python@v3
with:
python-version: 3.10
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint pytest mypy
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')
- name: Type Chescking the code with mypy
run: |
mypy $(git ls-files '*.py')
- name: Testing with pytest
run: |
pytest