chore(copybara): sync commits from Aspect-internal silo #55
Workflow file for this run
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: Validation | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
# Allows you to run this workflow manually from the Actions tab. | |
workflow_dispatch: | |
jobs: | |
validation: | |
name: Validation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Validate changed files | |
if: github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'allow sdk change') | |
run: ./.github/workflows/validate_changed_files.sh | |
- uses: bazelbuild/setup-bazelisk@v1 | |
- name: Go cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.mod', '**/go.sum') }} | |
restore-keys: ${{ runner.os }}-go- | |
- name: Tidy up repository | |
run: ./.github/workflows/tidy_up_repository.sh |