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:
20
20
fail-fast : false
21
21
matrix :
22
22
ruby :
23
- - " 3.0"
24
23
- " 3.1"
25
24
- " 3.2"
26
- - " ruby-head"
25
+ # - "ruby-head"
27
26
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
30
33
with :
31
34
ruby-version : ${{ matrix.ruby }}
32
35
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
26
26
RUN apk add build-base bash ruby ruby-etc ruby-dev
27
27
28
28
# 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
30
30
31
31
# 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
33
33
34
34
# Clean APK cache
35
35
RUN rm -rf /var/cache/apk/*
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
module InvoicePrinter
2
- VERSION = '2.3 .0'
2
+ VERSION = '2.4 .0'
3
3
end
You can’t perform that action at this time.
0 commit comments