-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpython-tox-testing-lambo-env.yml
More file actions
45 lines (42 loc) · 1.18 KB
/
python-tox-testing-lambo-env.yml
File metadata and controls
45 lines (42 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: poli lambo (py3.10)
on:
push:
branches:
- dev
- master
paths:
- 'src/poli/objective_repository/foldx_rfp_lambo/**'
- 'src/poli/tests/registry/proteins/test_foldx_rfp_lambo.py'
pull_request:
types: [opened, synchronize, reopened, ready_for_review, closed]
branches:
- dev
- master
paths:
- 'src/poli/objective_repository/foldx_rfp_lambo/**'
- 'src/poli/tests/registry/proteins/test_foldx_rfp_lambo.py'
schedule:
- cron: '0 0 * * 0'
jobs:
build-linux:
runs-on: ubuntu-latest
timeout-minutes: 8
if: github.event.pull_request.draft == false
strategy:
max-parallel: 5
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Add conda to system path
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Install dependencies
run: |
python -m pip install tox
- name: Test lambo-related black boxes with tox and pytest
run: |
tox -c tox.ini -e poli-lambo-py310