File tree 2 files changed +10
-8
lines changed
2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 7
7
pull_request :
8
8
branches :
9
9
- master
10
+ workflow_dispatch :
10
11
11
12
jobs :
12
13
test :
16
17
- uses : actions/checkout@v2
17
18
- uses : actions/setup-go@v2
18
19
with :
19
- go-version : ' ^1.15.7 '
20
+ go-version : ' 1.16.6 '
20
21
21
22
- name : Install & build
22
23
run : |
@@ -26,16 +27,14 @@ jobs:
26
27
sudo apt-get install -y apt-utils make \
27
28
wget git build-essential apt-transport-https \
28
29
openssl libssl-dev zip unzip libffi-dev \
29
- python python -pip python -dev
30
+ python3 python3 -pip python3 -dev
30
31
31
32
# Install printing with colors python package
32
- pip install setuptools wheel
33
+ python3 -m pip install setuptools wheel
33
34
wget https://raw.githubusercontent.com/dnanexus/dx-toolkit/master/src/python/requirements.txt
34
- pip install -r requirements.txt
35
+ python3 -m pip install -r requirements.txt
35
36
36
- # I used python2 because this installing dxpy causes a segmentation fault on pip3.
37
- # I have no idea why.
38
- pip install dxpy
37
+ python3 -m pip install dxpy
39
38
40
39
go build -o dxfuse cli/main.go
41
40
63
62
- uses : actions/checkout@v2
64
63
- uses : actions/setup-go@v2
65
64
with :
66
- go-version : ' ^1.15.7 '
65
+ go-version : ' 1.16.6 '
67
66
- name : Install & build
68
67
run : |
69
68
set -x
Original file line number Diff line number Diff line change
1
+ {
2
+ "python.pythonPath" : " /usr/bin/python3"
3
+ }
You can’t perform that action at this time.
0 commit comments