Skip to content

Commit

Permalink
GitHub Actions cleanup
Browse files Browse the repository at this point in the history
- Use `cache@v1` to fix issues.
- Remove unnecessary implicit/duplicate `name`.
  • Loading branch information
MikeMcQuaid committed Aug 14, 2020
1 parent 3e9ebe1 commit acd8139
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: GitHub Actions CI
on:
push:
branches: master
pull_request: []
pull_request:
jobs:
tests:
runs-on: ${{ matrix.os }}
Expand All @@ -17,7 +17,7 @@ jobs:

- name: Cache Homebrew Bundler RubyGems
id: cache
uses: actions/cache@main
uses: actions/cache@v1
with:
path: ${{ steps.set-up-homebrew.outputs.gems-path }}
key: ${{ runner.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }}
Expand All @@ -27,8 +27,7 @@ jobs:
if: steps.cache.outputs.cache-hit != 'true'
run: brew install-bundler-gems

- name: Run brew test-bot --only-tap-syntax
run: brew test-bot --only-tap-syntax
- run: brew test-bot --only-tap-syntax

- name: Set up Ruby
if: matrix.os == 'ubuntu-latest'
Expand Down

0 comments on commit acd8139

Please sign in to comment.