diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2020-11-08 15:16:44 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2020-11-08 15:16:44 +0530 |
commit | 2c8b5955e452f60c3d78c5d4477fbdf78d002dcc (patch) | |
tree | 200cb558a842bf26f3cb94ff767f08ee7331c2ea /.github/workflows/test-plip-oddt.yaml | |
parent | f358f3d1dd816f0f30ee82450fc5234cea86ff56 (diff) |
added another action to test
Diffstat (limited to '.github/workflows/test-plip-oddt.yaml')
-rw-r--r-- | .github/workflows/test-plip-oddt.yaml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/test-plip-oddt.yaml b/.github/workflows/test-plip-oddt.yaml new file mode 100644 index 0000000..383a1e2 --- /dev/null +++ b/.github/workflows/test-plip-oddt.yaml @@ -0,0 +1,25 @@ +name: Test Curie Functions + +on: [push] + +jobs: + build: + + runs-on: ubuntu-20.04 + if: "! contains(github.event.head_commit.message, 'wip')" + strategy: + matrix: + python-version: [3.8] + steps: + - uses: actions/checkout@v2 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + apt update && apt install python3-openbabel openbabel + python -m pip install git + python3 -m pip install git+https://github.com/navanchauhan/plip oddt + - name: Clean Test Data + run: cd tests && python test-oddt-plip.py |