Allow data access from full Firebase path #231
This file contains 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
# | |
# This source file is part of the Stanford Spezi open-source project | |
# | |
# SPDX-FileCopyrightText: 2024 Stanford University and the project authors (see CONTRIBUTORS.md) | |
# | |
# SPDX-License-Identifier: MIT | |
# | |
name: Pull Request | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
reuse_action: | |
name: REUSE Compliance Check | |
uses: StanfordSpezi/.github/.github/workflows/reuse.yml@v2 | |
markdown_link_check: | |
name: Markdown Link Check | |
uses: StanfordBDHG/.github/.github/workflows/markdown-link-check.yml@v2 | |
yamllint: | |
name: YAML Lint Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
- name: Install yamllint | |
run: pip install yamllint | |
- name: Run yamllint with custom config | |
run: yamllint -c .yamllint .github/workflows/*.yml |