On Mon, Jul 08, 2024 at 11:47:56PM GMT, Lucas De Marchi wrote:
Add a minimal github workflow to test kmod. This can be incremented in future to test more distros, compilers and libc. Signed-off-by: Lucas De Marchi <lucas.de.marchi@xxxxxxxxx> --- .github/workflows/main.yml | 49 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..f366846 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,49 @@ +name: Build and Test + +on: + push: + branches: [ci-test]
oops, I was using this for testing... need to replace with [master] Lucas De Marchi