-
Notifications
You must be signed in to change notification settings - Fork 3
46 lines (41 loc) · 1.01 KB
/
dev_build.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
39
40
41
42
43
44
45
46
name: Build
run-name: Development Build by ${{ github.actor }}
on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Install Miniconda
uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: "latest"
channels: conda-forge, defaults
auto-activate-base: true
activate-environment: ""
- name: Source Miniconda
run: |
source $CONDA/etc/profile.d/conda.sh
conda activate
which python
python --version
echo $CONDA
conda install -n base conda-libmamba-solver
conda config --set solver libmamba
python -m pip install --upgrade pip
- name: Build with tox
run: |
python -m pip install --upgrade pip
pip install tox
pip install tox-conda
tox -e dev_build
- name: Run tests with tox + pytest
run: |
tox