Skip to content

fix: Deprecate Ruby 3.0 and Drop support for Ruby 2.7 #597

fix: Deprecate Ruby 3.0 and Drop support for Ruby 2.7

fix: Deprecate Ruby 3.0 and Drop support for Ruby 2.7 #597

name: Rspec and Release
on:
push:
pull_request:
workflow_dispatch:
jobs:
rspec:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
ruby: ['3.0', '3.1', '3.2']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Test with Rspec
run: |
bundle exec rspec --format documentation --require spec_helper
release:
needs: rspec
runs-on: ubuntu-latest
env:
BUNDLE_DEPLOYMENT: true
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
- name: Zip
run : |
zip -r datadog_backup.zip ./*
- name: Semantic Release
id: semantic
uses: cycjimmy/semantic-release-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GEM_HOST_API_KEY: ${{ secrets.RUBYGEMS_API_TOKEN }}
with:
semantic_version: 17
extra_plugins: |
@semantic-release/changelog@5
@semantic-release/git@9
semantic-release-rubygem@1