Version 24_01_2024 #4
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: InChI Continuous Integration | |
on: | |
push: | |
branches: [ main, rwth ] | |
pull_request: | |
branches: [ main, rwth ] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: gcc:latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install SDF-pipeline | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install git+https://github.com/TUCAN-nest/SDF-pipeline.git | |
- name: Run regression tests | |
run: python -m INCHI-1-TEST.run_regression_tests ci | |
shell: bash | |
- name: Upload regression test results | |
if: '!cancelled()' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: regression-test-results | |
path: ./INCHI-1-TEST/data/ci/*_regression_test.log |