10 Star 33 Fork 0

过纯中 / wechat

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.gitlab-ci.yml 540 Bytes
一键复制 编辑 原始数据 按行查看 历史
ericguo 提交于 2023-12-30 16:46 . Time to say goodbye for Ruby 2.7
---
image: "ruby:3.0"
variables:
RAILS_ENV: test
before_script:
- ruby -v
- which ruby
- gem --version
- gem sources --add https://gems.ruby-china.com/ --remove https://rubygems.org/
- gem sources -l
- gem install bundler --no-document
- bundle config mirror.https://rubygems.org https://gems.ruby-china.com
- bundle config path vendor
- bundle install --jobs $(nproc) "${FLAGS[@]}"
stages:
- test
test:
stage: test
cache:
paths:
- vendor
script:
- bundle exec rspec
- bundle exec rubocop
Ruby
1
https://gitee.com/Eric-Guo/wechat.git
git@gitee.com:Eric-Guo/wechat.git
Eric-Guo
wechat
wechat
main

搜索帮助