Skip to content

Commit

Permalink
Adding environment setup steps to on_pull_request pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
luccab03 committed Aug 5, 2024
1 parent 1d975a8 commit 6a48153
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/on_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,25 @@ on:
pull_request:
branches:
- develop
workflow_dispatch:

jobs:
on_pull_request:
runs-on: macos-14
steps:
- uses: actions/checkout@v4

- name: Set up Ruby environment
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0

- name: Install bundler
run: gem install bundler

- name: Install dependencies
run: bundle install

- name: Run Unit and UI tests
uses: ./.github/workflows/actions/run_lane
with:
Expand Down

0 comments on commit 6a48153

Please sign in to comment.