Remove the documentation section referencing gcr.io in favor of local build because we will stop publishing containers in the future #65
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci-tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
ci-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 'head' | |
- name: Install Dependencies | |
run: gem install foodcritic | |
- name: Run tests | |
run: | | |
foodcritic --version | |
foodcritic --cookbook-path=examples/chef/cookbooks --rule-file=examples/chef/.foodcritic --epic-fail=any |