Skip to content

[PROTOCONV] Convert the Kotlin code to Proto #2208

[PROTOCONV] Convert the Kotlin code to Proto

[PROTOCONV] Convert the Kotlin code to Proto #2208

Workflow file for this run

# Copyright 2024 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: Lint
on:
pull_request:
merge_group:
push:
branches:
- main
- 'stable/**'
- 'feature/**'
permissions: {}
jobs:
superlint:
name: Super Lint
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
# super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0
- name: Super-linter
uses: super-linter/super-linter@85f7611e0f7b53c8573cca84aa0ed4344f6f6a4d
env:
# To report GitHub Actions status checks
GITHUB_ACTIONS_CONFIG_FILE: .github/actionlint.yaml
LINTER_RULES_PATH: /
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_PROTOBUF: true
PROTOBUF_CONFIG_FILE: .protolint.yaml
VALIDATE_GITHUB_ACTIONS: true
VALIDATE_RUST_2021: true
# VALIDATE_KOTLIN: false # Superlinter uses ktlint...
lint-kotlin:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Build
uses: ./.github/actions/setup-build
with:
setup-gradle: true
- run: ./gradlew spotCheck
validate-gradle-wrapper:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
cargo-deny:
runs-on: ubuntu-22.04
strategy:
matrix:
checks:
- advisories
- bans licenses sources
# Prevent sudden announcement of a new advisory from failing ci:
continue-on-error: ${{ matrix.checks == 'advisories' }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: EmbarkStudios/cargo-deny-action@e2f4ede4a4e60ea15ff31bc0647485d80c66cfba # v2.0.4
with:
command: check ${{ matrix.checks }}