File tree Expand file tree Collapse file tree 4 files changed +12
-92
lines changed
Expand file tree Collapse file tree 4 files changed +12
-92
lines changed Original file line number Diff line number Diff line change @@ -20,14 +20,18 @@ jobs:
2020 fail-fast : false
2121 matrix :
2222 ruby :
23- - " 3.0"
2423 - " 3.1"
2524 - " 3.2"
26- - " ruby-head"
25+ # - "ruby-head"
2726 steps :
28- - uses : actions/checkout@v4
29- - uses : ruby/setup-ruby@v1
27+ - name : Install system dependencies
28+ run : sudo apt-get install imagemagick libmagickwand-dev
29+ - name : Check out code
30+ uses : actions/checkout@v4
31+ - name : Install Ruby dependencies
32+ uses : ruby/setup-ruby@v1
3033 with :
3134 ruby-version : ${{ matrix.ruby }}
3235 bundler-cache : true
33- - run : bundle exec rake test
36+ - name : Run tests
37+ run : bundle exec rake test
Original file line number Diff line number Diff line change @@ -26,10 +26,10 @@ RUN apk update && apk upgrade
2626RUN apk add build-base bash ruby ruby-etc ruby-dev
2727
2828# Install builtin fonts
29- RUN gem install invoice_printer_fonts --version 2.3 .0 --no-document
29+ RUN gem install invoice_printer_fonts --version 2.4 .0 --no-document
3030
3131# Install the gem from RubyGems.org
32- RUN gem install invoice_printer_server --version 2.3 .0 --no-document
32+ RUN gem install invoice_printer_server --version 2.4 .0 --no-document
3333
3434# Clean APK cache
3535RUN rm -rf /var/cache/apk/*
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11module InvoicePrinter
2- VERSION = '2.3 .0'
2+ VERSION = '2.4 .0'
33end
You can’t perform that action at this time.
0 commit comments