Bug fix #453
This file contains 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: golden tests | |
on: [push, pull_request] | |
env: | |
PYTHON_VERSION: 3.11 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repo content | |
uses: actions/checkout@v4 | |
- name: setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Install dependencies and package | |
run: | | |
pip install -r requirements.txt | |
pip install -r requirements-dev.txt | |
python setup.py install | |
- name: Run tests | |
run: | |
python golden_tests/run_all_tests.py | |
- name: Archive code coverage results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: result-differences-file-upload | |
path: golden_tests/differences/*.testLog |