Update community findings #13
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: DFAH research artifacts | |
| on: | |
| pull_request: | |
| paths: | |
| - "bench/**" | |
| - "data/**" | |
| - "docs/lab-*/**" | |
| - "docs/resources/**" | |
| - "econometrics/**" | |
| - "figs/**" | |
| - "harness/**" | |
| - "providers/**" | |
| - "prompts/**" | |
| - "results/**" | |
| - "scripts/**" | |
| - "tests/**" | |
| - "!tests/dfah/**" | |
| - "make_tables.py" | |
| - "plot_results.py" | |
| - "run_dfah_demo.py" | |
| - "run_evaluation.py" | |
| - "Makefile" | |
| - "README.md" | |
| - "requirements.txt" | |
| - ".github/workflows/dfah-research.yml" | |
| push: | |
| branches: [main] | |
| paths: | |
| - "bench/**" | |
| - "data/**" | |
| - "docs/lab-*/**" | |
| - "docs/resources/**" | |
| - "econometrics/**" | |
| - "figs/**" | |
| - "harness/**" | |
| - "providers/**" | |
| - "prompts/**" | |
| - "results/**" | |
| - "scripts/**" | |
| - "tests/**" | |
| - "!tests/dfah/**" | |
| - "make_tables.py" | |
| - "plot_results.py" | |
| - "run_dfah_demo.py" | |
| - "run_evaluation.py" | |
| - "Makefile" | |
| - "README.md" | |
| - "requirements.txt" | |
| - ".github/workflows/dfah-research.yml" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| reproduce: | |
| name: Reproduce corrected and archived analyses | |
| runs-on: ubuntu-latest | |
| env: | |
| MPLBACKEND: Agg | |
| PYTHONDONTWRITEBYTECODE: "1" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| cache: pip | |
| - run: python -m pip install --upgrade pip | |
| - run: python -m pip install -r requirements.txt | |
| - run: python -m pytest -q tests --ignore=tests/dfah | |
| - run: make PYTHON=python reproduce-paper | |
| - run: make PYTHON=python verify-v2-manifest | |
| - run: make PYTHON=python reproduce-paper-v1-fast |