We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0a9460 commit 6560bedCopy full SHA for 6560bed
1 file changed
.github/workflows/tests.yml
@@ -0,0 +1,23 @@
1
+# SPDX-FileCopyrightText: 2026 Helmholtz-Zentrum Dresden - Rossendorf e.V. (HZDR)
2
+# SPDX-FileContributor: David Pape
3
+#
4
+# SPDX-License-Identifier: CC0-1.0
5
+
6
+name: Tests
7
+run-name: Tests for ${{ github.actor }} on ${{ github.ref_name }}
8
+on: [push, pull_request]
9
+permissions:
10
+ contents: read
11
+jobs:
12
+ ruff-check-and-format-check:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v5
16
+ - uses: astral-sh/ruff-action@v3
17
+ - run: ruff check
18
+ - run: ruff format --check --diff
19
+ reuse-compliance-check:
20
21
22
23
+ - uses: fsfe/reuse-action@v6
0 commit comments