Fix for Kekule determination. #34
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: ci-testing | |
# Controls when the workflow will run . | |
on: | |
# Triggers the workflow on pull request events for master | |
pull_request: | |
branches: [ master, dev ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build the project | |
run: make build_docker | |
- name: Run the project | |
run: | | |
docker compose up -d | |
sleep 30 | |
- name: Run unit tests | |
run: | | |
set -o pipefail | |
make test_lillymol | tee ./unit_test_results.txt | |
- name: Stop running | |
run: docker compose down |