Skip to content

Remove launchdarkly/gh-actions/actions/verify-hello-app from ci.yml #2

Remove launchdarkly/gh-actions/actions/verify-hello-app from ci.yml

Remove launchdarkly/gh-actions/actions/verify-hello-app from ci.yml #2

Workflow file for this run

name: Build and run
on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 9 * * *'
push:
branches: [main, 'feat/**']
paths-ignore:
- '**.md' # Do not need to run CI for markdown changes.
pull_request:
branches: [main, 'feat/**']
paths-ignore:
- '**.md'
jobs:
build-and-run:
runs-on: ubuntu-latest
permissions:
id-token: write # Needed if using OIDC to get release secrets.
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
- name: Install dependencies
run: bundle install