Skip to content

Chore: Remove debugging code (#48) #19

Chore: Remove debugging code (#48)

Chore: Remove debugging code (#48) #19

Workflow file for this run

---
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: 2024 The Linux Foundation <https://linuxfoundation.org>
name: "🧪 Test Composite Actions"
# yamllint disable-line rule:truthy
on:
workflow_dispatch:
push:
branches: [main, master]
paths: [".github/actions/**", ".github/workflows/**"]
### TESTS ###
jobs:
test:
name: "Testing: Composite Actions"
runs-on: ubuntu-latest
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
#permissions:
# contents: read
steps:
- name: "Checkout repository"
uses: actions/checkout@v4
with:
fetch-tags: true
- name: "latest-semantic-tag"
id: test-latest-semantic-tag
# yamllint disable-line rule:line-length
uses: os-climate/devops-reusable-workflows/.github/actions/latest-semantic-tag@main
#env:
# GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}