Fix the bug introduced to image_tag (#137) #586
This file contains 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: rules_swiftnav | |
on: | |
pull_request: ~ | |
push: | |
branches: | |
- 'main' | |
jobs: | |
check-formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: us-west-2 | |
- name: Set up cache | |
run: | | |
npm install -g bazels3cache | |
bazels3cache --bucket=${{ secrets.BAZEL_BUCKET }} | |
- name: Checkout source | |
uses: actions/checkout@v2 | |
- name: Run format | |
run: | | |
bazel run --remote_cache=http://localhost:7777 //:buildifier | |
git diff --exit-code |