Skip to content

✨(core): Add external-secret-store command #19

✨(core): Add external-secret-store command

✨(core): Add external-secret-store command #19

# Copyright (C) 2024 Alexandre Nicolaie ([email protected])
#
# 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 & Build kubevault
on:
pull_request:
types: [opened, synchronize]
paths:
- Cargo.{lock,toml}
- src/**
- tests/**
- .github/workflows/merge_group,pull_request.rust.yaml
- .github/workflows/workflow_call.rust.*.yaml
concurrency:
group: ${{ github.action }}-${{ github.event.pull_request.id }}
cancel-in-progress: true
permissions: {}
jobs:
rust-lint:
name: πŸ¦€
permissions:
contents: read
pull-requests: write
uses: ./.github/workflows/workflow_call.rust.lint.yaml
rust-test:
name: πŸ§ͺ
if: needs.rust-lint.result == 'success'
needs: rust-lint
uses: ./.github/workflows/workflow_call.rust.test.yaml
rust-build-stable:
name: 🚧
needs: rust-lint
permissions:
attestations: write
contents: write
id-token: write
uses: ./.github/workflows/workflow_call.rust.build.yaml
with:
rust-channel: stable
rust-build-msrv:
name: 🚧
needs: rust-lint
permissions:
attestations: write
contents: write
id-token: write
uses: ./.github/workflows/workflow_call.rust.build.yaml
with:
rust-channel: 1.74.1
rust-coverage:
name: πŸ§ͺ
needs: [rust-test, rust-build-stable, rust-build-msrv]
uses: ./.github/workflows/workflow_call.rust.coverage.yaml
secrets: inherit