This repository was archived by the owner on May 27, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +50
-0
lines changed Expand file tree Collapse file tree 2 files changed +50
-0
lines changed Original file line number Diff line number Diff line change 1+ # SPDX-FileCopyrightText: 2019 Free Software Foundation Europe e.V. <https://fsfe.org>
2+ # SPDX-FileCopyrightText: 2022 Carmen Bianca Bakker <[email protected] >3+ # SPDX-FileCopyrightText: 2023 Coop IT Easy SC <https://coopiteasy.be>
4+ #
5+ # SPDX-License-Identifier: CC-BY-SA-4.0
6+
7+ name : Test suites
8+
9+ on :
10+ push :
11+ branches :
12+ - main
13+ pull_request :
14+
15+ jobs :
16+ prettier :
17+ runs-on : ubuntu-20.04
18+ container : node:latest
19+ steps :
20+ - uses : actions/checkout@v2
21+ - name : Install prettier
22+ run :
npm install [email protected] 23+ - name : Run prettier
24+ run : npx prettier --check .
25+
26+ reuse :
27+ runs-on : ubuntu-20.04
28+ steps :
29+ - uses : actions/checkout@v2
30+ - name : Set up Python
31+ uses : actions/setup-python@v2
32+ - name : Install dependencies
33+ run : pip install reuse
34+ - name : Test REUSE compliance
35+ run : reuse lint
Original file line number Diff line number Diff line change 1+ # SPDX-FileCopyrightText: 2018 Free Software Foundation Europe e.V. <https://fsfe.org>
2+ #
3+ # SPDX-License-Identifier: CC-BY-SA-4.0
4+
5+ repos :
6+ - repo : https://github.com/pre-commit/mirrors-prettier
7+ rev : v2.7.1
8+ hooks :
9+ - id : prettier
10+ name : prettier
11+
12+ - repo : https://github.com/fsfe/reuse-tool
13+ rev : main
14+ hooks :
15+ - id : reuse
You can’t perform that action at this time.
0 commit comments