Skip to content

Commit

Permalink
ci: skip check syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyar committed Feb 10, 2021
1 parent 2f37c25 commit 751b93c
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/building.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,24 @@ on:
- 'Formula/*'

jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Set up Homebrew
id: setup
uses: Homebrew/actions/setup-homebrew@master
- name: Cache gems
uses: actions/cache@v1
with:
path: ${{steps.setup.outputs.gems-path}}
key: ${{runner.os}}-rubygems-${{steps.setup.outputs.gems-hash}}
restore-keys: ${{runner.os}}-rubygems-
- name: Install gems
run: brew install-bundler-gems
- name: Check formulae
run: brew test-bot --only-tap-syntax
# check:
# runs-on: ubuntu-latest
# steps:
# - name: Set up Homebrew
# id: setup
# uses: Homebrew/actions/setup-homebrew@master
# - name: Cache gems
# uses: actions/cache@v1
# with:
# path: ${{steps.setup.outputs.gems-path}}
# key: ${{runner.os}}-rubygems-${{steps.setup.outputs.gems-hash}}
# restore-keys: ${{runner.os}}-rubygems-
# - name: Install gems
# run: brew install-bundler-gems
# - name: Check formulae
# run: brew test-bot --only-tap-syntax
build:
needs: check
# needs: check
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 751b93c

Please sign in to comment.