Fix markdown syntax #9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2025 The Cipher Host Team <[email protected]> | |
# | |
# SPDX-License-Identifier: CC0-1.0 | |
--- | |
name: 'Check licenses' | |
permissions: | |
contents: 'read' | |
jobs: | |
go: | |
name: 'Check all files' | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: 'step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e' # v2.10.4 | |
with: | |
egress-policy: 'audit' | |
- uses: 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683' # v4.2.2 | |
with: | |
persist-credentials: false | |
- name: 'Setup Python environment' | |
uses: 'actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38' # v5.4.0 | |
with: | |
python-version: '3.13' | |
- name: 'Install dependencies' | |
run: 'pipx install reuse' | |
- name: 'Run REUSE' | |
run: 'make lint-licenses' |