From a616f0938ab2e1271882de50d7ae8eac6b0edeba Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Mon, 7 Jun 2021 17:07:50 +0200 Subject: [PATCH] Boot strap github actions A initial workflow needs to be defined for actions to trigger on pull requests, so just add a minimal, dummy one. --- .github/workflows/build.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..7979e529 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,9 @@ +name: Build + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 -- 2.39.5