Skip to content

Remove unintentionally added file #12

Remove unintentionally added file

Remove unintentionally added file #12

Workflow file for this run

# Copyright 2026 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: 'ci'
on:
pull_request:
merge_group:
permissions:
contents: 'read'
concurrency:
group: '${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}'
cancel-in-progress: true
jobs:
lint:
uses: './.github/workflows/_lint_run.yaml'
test:
uses: './.github/workflows/_test_run.yaml'
all-checks-passed:
runs-on: 'ubuntu-latest'
needs:
- 'lint'
- 'test'
if: always()
steps:
- name: 'Verify all required checks passed'
shell: 'bash'
env:
LINT_RESULT: '${{ needs.lint.result }}'
TEST_RESULT: '${{ needs.test.result }}'
run: |
echo "lint result: $LINT_RESULT"
echo "test result: $TEST_RESULT"
if [[ "$LINT_RESULT" != "success" ]] || [[ "$TEST_RESULT" != "success" ]]; then
echo "One or more required checks failed or were cancelled."
exit 1
fi
echo "All checks passed successfully."