File: .gitlab-ci.yml

package info (click to toggle)
ruby-net-dns 0.9.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 452 kB
  • sloc: ruby: 3,944; makefile: 6
file content (23 lines) | stat: -rw-r--r-- 392 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

cache:
  paths:
    - vendor/ruby

before_script:
  - apk add --update git make build-base
  - gem install bundler
  - bundle install --path vendor/ruby

rubocop:
  image: "ruby:3.0-alpine"
  script:
    - bundle exec rubocop
  allow_failure: true

rspec:
  image: "ruby:${RUBY_VERSION}-alpine"
  script:
    - bundle exec rake
  parallel:
    matrix:
      - RUBY_VERSION: [ "2.7", "3.0" ]