Skip to content

Document how to opt into the GOV.UK Dependabot Merger service #52

Document how to opt into the GOV.UK Dependabot Merger service

Document how to opt into the GOV.UK Dependabot Merger service #52

Workflow file for this run

name: CI
on:
workflow_dispatch: {}
push:
branches:
- main
paths-ignore:
- ".git**"
pull_request:
jobs:
test-ruby:
name: Test Ruby
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Run linting
run: bundle exec rubocop
- name: Run unit tests
run: bundle exec rspec