From ddd3ecf7eb3dbbbd733c99585160df05382cb099 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Tue, 18 Oct 2022 11:57:54 +0200 Subject: [PATCH] ci: init gha workflow Signed-off-by: CrazyMax --- .github/workflows/ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000000..c71d073351 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,15 @@ +name: ci + +on: + push: + branches: + - master + pull_request: + +jobs: + build: + runs-on: ubuntu-20.04 + steps: + - + name: Checkout + uses: actions/checkout@v3