This repository has been archived by the owner on May 22, 2024. It is now read-only.
script: add devcontainer recipe #23
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
# SPDX-FileCopyrightText: 2023 Junde Yhi <junde@yhi.moe> | |
# SPDX-License-Identifier: CC0-1.0 | |
name: REUSE Compliance | |
on: | |
- push | |
- pull_request | |
- workflow_dispatch | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Source Code | |
uses: actions/checkout@v3 | |
- name: Set Up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install REUSE Helper Tool | |
run: pip install reuse | |
- name: Run REUSE Lint | |
run: reuse lint |