-
Notifications
You must be signed in to change notification settings - Fork 7
38 lines (38 loc) · 1 KB
/
thefirst.yml
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
name: Install in conda env
on:
push:
paths:
- '**.py'
- '.github/workflows/thefirst.yml'
- 'env/fingeRNAt_env.yml'
jobs:
build:
strategy:
matrix:
os: ['ubuntu-18.04', 'ubuntu-20.04', 'macos-10.15', 'macos-11']
#os: ['ubuntu-latest']
# python-version: [3.5, 3.7, 3.8, 3.9]
python-version: [3.8]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v2.0.1
with:
auto-update-conda: true
auto-activate-base: false
miniconda-version: 'latest'
python-version: ${{ matrix.python-version }}
environment-file: env/fingeRNAt_env.yml
activate-environment: fingernat
- name: list packages
shell: pwsh
run: |
conda list
- name: run test
shell: pwsh
run: |
conda env list
cd tests
python fingeRNAt_test.py