File tree Expand file tree Collapse file tree 3 files changed +44
-84
lines changed Expand file tree Collapse file tree 3 files changed +44
-84
lines changed Original file line number Diff line number Diff line change 12
12
13
13
jobs :
14
14
test :
15
- name : ${{ matrix.os }}/ruby- ${{ matrix.ruby }}/python- ${{ matrix.python }}-${{ matrix.python_architecture }}
15
+ name : ${{ matrix.os }}/${{ matrix.ruby }}/${{ matrix.python }}-${{ matrix.python_architecture }}
16
16
runs-on : ${{ matrix.os }}
17
17
18
18
strategy :
66
66
- run : bundle exec rake
67
67
env :
68
68
PYTHON : python
69
+
70
+ conda :
71
+ name : conda:${{ matrix.os }}/${{ matrix. ruby }}/${{ matrix.python }}
72
+ runs-on : ${{ matrix.os }}
73
+
74
+ strategy :
75
+ fail-fast : false
76
+ matrix :
77
+ os :
78
+ - ubuntu-20.04
79
+ - macos-latest
80
+ ruby :
81
+ - " 3.0"
82
+ python :
83
+ - 3.8
84
+
85
+ steps :
86
+ - uses : actions/checkout@v2
87
+ with :
88
+ fetch-depth : 1
89
+
90
+ - uses : ruby/setup-ruby@v1
91
+ if : matrix.ruby_version != 'master-nightly'
92
+ with :
93
+ ruby-version : ${{ matrix.ruby }}
94
+
95
+ - uses : s-weigand/setup-conda@v1
96
+ with :
97
+ python-version : ${{ matrix.python }}
98
+
99
+ - run : gem install bundler
100
+
101
+ - run : conda install numpy
102
+
103
+ - run : bundle install
104
+
105
+ - run : bundle exec rake compile
106
+
107
+ - run : python lib/pycall/python/investigator.py
108
+
109
+ - run : bundle exec rake
110
+ env :
111
+ PYTHON : python
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 6
6
# PyCall: Calling Python functions from the Ruby language
7
7
8
8
[ ![ Build Status] ( https://github.com/mrkn/pycall.rb/workflows/CI/badge.svg )] ( https://github.com/mrkn/pycall.rb/actions?query=workflow%3ACI )
9
- [ ![ Build Status] ( https://travis-ci.org/mrkn/pycall.rb.svg?branch=master )] ( https://travis-ci.org/mrkn/pycall.rb )
10
9
[ ![ Build status] ( https://ci.appveyor.com/api/projects/status/0fad23u4qj1yr49e/branch/master?svg=true )] ( https://ci.appveyor.com/project/mrkn/pycall-rb/branch/master )
11
10
12
11
This library provides the features to directly call and partially interoperate
You can’t perform that action at this time.
0 commit comments