We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4975d37 commit cbfb9b6Copy full SHA for cbfb9b6
.github/workflows/workflow.yml
@@ -9,10 +9,12 @@ jobs:
9
- uses: ruby/setup-ruby-pkgs@v1
10
with:
11
ruby-version: 3.3.0
12
- - run: sudo apt-get update && sudo apt-get install -y libopencv-dev
+ - run: sudo apt-get update && sudo apt-get install -y libopencv-dev libvips
13
- run: gem update --system
14
- - run: gem build libfacedetection.gemspec
15
- - run: gem install $(ls -1 *.gem)
+ - run: rake gem
+ - run: gem install $(ls -1 pkg/*.gem)
16
+ - run: bundle install
17
+ - run: ruby tests/test_detection.rb
18
# compile_native_gem:
19
# name: Compile native gem
20
# runs-on: ubuntu-latest
0 commit comments