Skip to content

Commit

Permalink
github action
Browse files Browse the repository at this point in the history
  • Loading branch information
Wout4 committed Nov 12, 2023
1 parent bce1b52 commit f5cd549
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Github Benchmarks

on: [push] # Can also put pull_request here, but then we dont run it when directly pushing to master

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest requests pandas
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install pytest-benchmark
pip install python-sat
pip install z3-solver
pip install exact
pip install pysdd
- name: Benchmark with pytest
run: |
python -m pytest benchmarks/ --benchmark-autosave

0 comments on commit f5cd549

Please sign in to comment.