File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : github-CI
2
+
3
+ on : [push]
4
+
5
+ jobs :
6
+ build :
7
+
8
+ runs-on : ${{ matrix.os }}
9
+ strategy :
10
+ matrix :
11
+ os : [ubuntu-latest, macOS-latest]
12
+ python-version : [3.6, 3.7, 3.8]
13
+ name : Python ${{ matrix.python-version }} example
14
+
15
+ steps :
16
+ - uses : actions/checkout@v2
17
+ - run : git fetch --depth=1 origin +refs/tags/*:refs/tags/*
18
+ - name : setup-conda
19
+ uses : s-weigand/setup-conda@v1
20
+ with :
21
+ update-conda : true
22
+ python-version : ${{ matrix.python-version }}
23
+ conda-channels : anaconda, conda-forge
24
+ - run : conda --version
25
+ - run : which python
26
+ - run : |
27
+ conda config --add channels conda-forge
28
+ conda config --set always_yes yes
29
+ conda install -n root conda-build numpy
30
+ conda build ./conf
You can’t perform that action at this time.
0 commit comments