Skip to content

Commit

Permalink
Merge branch 'main' into multi_stock
Browse files Browse the repository at this point in the history
  • Loading branch information
Juliette-Gerbaux committed Dec 5, 2024
2 parents 53b1d86 + 128e674 commit f1f782b
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
34 changes: 34 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: CI
on:
push:
branches:
- "**"

jobs:
ci:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
cache: pip
cache-dependency-path: |
requirements.txt
requirements-dev.txt
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r requirements-dev.txt
- name: Check typing
run: |
python -m mypy src
- name: Test
run: |
pytest
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
numpy
scipy
xpress
xpress
ortools

0 comments on commit f1f782b

Please sign in to comment.