aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-08-19 16:18:37 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-08-22 04:58:21 -0300
commitb4346f0f198c89403465d648919ce0d49e087223 (patch)
tree9cb7a2155d639720560f9f1dad63aa7aba222f1a /.github
parentci: split test jobs for faster checks (diff)
downloadfirejail-b4346f0f198c89403465d648919ce0d49e087223.tar.gz
firejail-b4346f0f198c89403465d648919ce0d49e087223.tar.zst
firejail-b4346f0f198c89403465d648919ce0d49e087223.zip
ci: document the intended purpose of each workflow
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build-extra.yml2
-rw-r--r--.github/workflows/build.yml3
-rw-r--r--.github/workflows/check-c.yml2
-rw-r--r--.github/workflows/check-profiles.yml2
-rw-r--r--.github/workflows/check-python.yml2
-rw-r--r--.github/workflows/codespell.yml2
-rw-r--r--.github/workflows/test.yml2
7 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/build-extra.yml b/.github/workflows/build-extra.yml
index b538fde68..1629733ae 100644
--- a/.github/workflows/build-extra.yml
+++ b/.github/workflows/build-extra.yml
@@ -1,3 +1,5 @@
1# Builds the project with alternative tools.
2
1name: Build-extra 3name: Build-extra
2 4
3on: 5on:
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 1c5fb5f6d..d923f8b2b 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -1,3 +1,6 @@
1# Checks that `make dist` works and builds the project with the default
2# configuration.
3
1name: Build 4name: Build
2 5
3# Note: Keep this list in sync with DISTFILES in ../../Makefile. 6# Note: Keep this list in sync with DISTFILES in ../../Makefile.
diff --git a/.github/workflows/check-c.yml b/.github/workflows/check-c.yml
index 472238ff0..d8751ddc7 100644
--- a/.github/workflows/check-c.yml
+++ b/.github/workflows/check-c.yml
@@ -1,3 +1,5 @@
1# Checks for potential issues in the source code.
2
1name: Check-C 3name: Check-C
2 4
3on: 5on:
diff --git a/.github/workflows/check-profiles.yml b/.github/workflows/check-profiles.yml
index 5167516e8..193cfcb9f 100644
--- a/.github/workflows/check-profiles.yml
+++ b/.github/workflows/check-profiles.yml
@@ -1,3 +1,5 @@
1# Lints and checks for potential issues in the profiles.
2
1name: Check-Profiles 3name: Check-Profiles
2 4
3on: 5on:
diff --git a/.github/workflows/check-python.yml b/.github/workflows/check-python.yml
index 91b87650f..50ddf5669 100644
--- a/.github/workflows/check-python.yml
+++ b/.github/workflows/check-python.yml
@@ -1,3 +1,5 @@
1# Lints and checks for potential issues in Python files.
2
1name: Check-Python 3name: Check-Python
2 4
3on: 5on:
diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml
index e39755dbd..4eacfb244 100644
--- a/.github/workflows/codespell.yml
+++ b/.github/workflows/codespell.yml
@@ -1,3 +1,5 @@
1# Checks the spelling on all non-third-party files.
2
1name: Codespell 3name: Codespell
2 4
3on: 5on:
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 771e7ce4c..0b679c1c8 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -1,3 +1,5 @@
1# Checks that the tests are passing.
2
1name: Test 3name: Test
2 4
3on: 5on: