Skip to content

Update dependabot.yml cooldown (#111) #62

Update dependabot.yml cooldown (#111)

Update dependabot.yml cooldown (#111) #62

name: continuous-delivery
permissions:
contents: read
on:
push:
branches:
- main
concurrency:
group: continuous-delivery
cancel-in-progress: true
jobs:
build:
name: Run tests
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- ubuntu-24.04-arm
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- uses: ruby/setup-ruby@319994f95fa847cf3fb3cd3dbe89f6dcde9f178f
with:
ruby-version: 4.0.1
- run: gem install bundler --no-document
- run: bundle
- run: rake native gem
- if: ${{ matrix.os == 'ubuntu-latest' }}
run: gem build
- uses: actions/upload-artifact@v7
with:
name: gem-${{ matrix.os }}
path: |
*.gem
pkg/*.gem