Skip to content

Check CI workflows for the initial setup #3

Check CI workflows for the initial setup

Check CI workflows for the initial setup #3

Workflow file for this run

# This file is part of Astarte.
#
# Copyright 2024 SECO Mind Srl
#
# SPDX-License-Identifier: Apache-2.0
name: ci
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
- release-*
permissions:
contents: read
# Spend CI time only on latest ref
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
reuse:
uses: ./.github/workflows/reuse-lint.yaml
check:
uses: ./.github/workflows/check.yaml
needs: [reuse]
test:
uses: ./.github/workflows/test.yaml
secrets: inherit
needs: [reuse]