Skip to content

Commit

Permalink
Fix gems bundle warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jonreid committed Apr 7, 2021
1 parent 651f4fd commit 834f1ad
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,16 @@ jobs:
run: xcode-select -p
- name: Build & test
run: xcodebuild test -project Source/OCHamcrest.xcodeproj -scheme OCHamcrest -sdk macosx | xcpretty
- name: Install Slather
- name: Install gems
run: |
bundle config path vendor/bundle
bundle install --without=documentation --jobs 4 --retry 3
bundle config set --local without 'documentation'
bundle install --jobs 4 --retry 3
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: get_branch
- name: Report coverage to Slather
- name: Report coverage
run: bundle exec slather
env:
GIT_BRANCH: ${{ steps.get_branch.outputs.branch }}
Expand Down

0 comments on commit 834f1ad

Please sign in to comment.