Skip to content

Create system.yml

Create system.yml #8

Workflow file for this run

name: Integration tests
on: [pull_request]
jobs:
build:
name: Integration pipeline
runs-on: ubuntu-latest
steps:
- name: Set up Ruby
uses: ruby/setup-ruby@f20f1eae726df008313d2e0d78c5e602562a1bcf
with:
ruby-version: head
- name: Checkout repository
uses: actions/checkout@v3
- name: Install gems
run: bundle install
- name: Build and run integration tests
env:
OPENAI_ACCESS_TOKEN: ${{ secrets.OPENAI_ACCESS_TOKEN }}
run: rake integration