Skip to content

Commit

Permalink
Deploying from phrase/openapi@524626f5
Browse files Browse the repository at this point in the history
  • Loading branch information
Phrase committed Oct 30, 2023
1 parent 1ec90d9 commit e05dd4d
Show file tree
Hide file tree
Showing 343 changed files with 1,632 additions and 5,038 deletions.
26 changes: 26 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
.ruby: &ruby
variables:
LANG: "C.UTF-8"
before_script:
- ruby -v
- bundle config set --local deployment true
- bundle install -j $(nproc)
parallel:
matrix:
- RUBY_VERSION: ['2.7', '3.0', '3.1']
image: "ruby:$RUBY_VERSION"
cache:
paths:
- vendor/ruby
key: 'ruby-$RUBY_VERSION'

gem:
extends: .ruby
script:
- bundle exec rspec
- bundle exec rake build
- bundle exec rake install
artifacts:
paths:
- pkg/*.gem

Loading

0 comments on commit e05dd4d

Please sign in to comment.