From 09cb6b975923064864485c8c90487dd025534c93 Mon Sep 17 00:00:00 2001 From: FantasticFiasco Date: Fri, 29 Mar 2024 15:05:47 +0100 Subject: [PATCH] chore: bootstrap ci github actions workflow --- .editorconfig | 3 ++- .github/workflows/ci.yml | 11 +++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/ci.yml diff --git a/.editorconfig b/.editorconfig index b6a8b3b..3b5988f 100644 --- a/.editorconfig +++ b/.editorconfig @@ -5,6 +5,7 @@ root = true [*] indent_style = space +insert_final_newline = true [*.cs] indent_size = 4 @@ -61,4 +62,4 @@ indent_size = 4 indent_size = 2 [*.{yaml,yml}] -indent_size = 2 \ No newline at end of file +indent_size = 2 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..e2f2b33 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,11 @@ +name: CI + +on: + push: + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - run: echo "Hello world"