Skip to content

Add track_delivery_metric for /api/v1/metrics endpoint #249

Add track_delivery_metric for /api/v1/metrics endpoint

Add track_delivery_metric for /api/v1/metrics endpoint #249

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
spec:
name: Specs / Ruby ${{ matrix.ruby }}
runs-on: ubuntu-24.04
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
ruby:
- "3.3"
- "3.4"
- "4.0"
steps:
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake spec
lint:
name: RuboCop
runs-on: ubuntu-24.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.4"
bundler-cache: true
- run: bundle exec rubocop --parallel
package:
name: Build gem
runs-on: ubuntu-24.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.4"
bundler-cache: true
- run: bundle exec rake build
ruby-head:
name: Specs / Ruby head
runs-on: ubuntu-24.04
timeout-minutes: 10
continue-on-error: true
steps:
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: ruby-head
bundler-cache: true
- run: bundle exec rake spec