Skip to content

build(deps): bump actions/download-artifact from 4.1.8 to 4.1.9 in the artifacts group #1921

build(deps): bump actions/download-artifact from 4.1.8 to 4.1.9 in the artifacts group

build(deps): bump actions/download-artifact from 4.1.8 to 4.1.9 in the artifacts group #1921

Workflow file for this run

name: CI
on:
push:
branches: master
pull_request:
permissions:
contents: read
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
steps:
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
- name: Cache Homebrew Bundler RubyGems
id: cache
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
with:
path: ${{ steps.set-up-homebrew.outputs.gems-path }}
key: ${{ runner.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }}
restore-keys: ${{ runner.os }}-rubygems-
- name: Install Homebrew Bundler RubyGems
if: steps.cache.outputs.cache-hit != 'true'
run: brew install-bundler-gems
- run: brew test-bot --only-tap-syntax
- name: Set up Ruby
uses: ruby/setup-ruby@32110d4e311bd8996b2a82bf2a43b714ccc91777 # v1.221.0
with:
bundler-cache: true
- name: Run RSpec tests
run: bundle exec rspec
- uses: codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 # v5.3.1
if: always()
- name: Test that installing works
run: |
echo 'brew "hello"' > ./Brewfile
brew bundle
hello