From f011da132cb44f1ca86df338ccca35cb0b13f83f Mon Sep 17 00:00:00 2001 From: Alexandre Lamarre Date: Thu, 11 Apr 2024 02:04:37 -0400 Subject: [PATCH] add BRO CI to gha CI Signed-off-by: Alexandre Lamarre --- .github/workflows/ci.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 00000000..799cb45f --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,27 @@ +name: Backup Restore CI + +on: + push: + paths-ignore: + - 'docs/**' + - '*.md' + - '.gitignore' + - 'CODEOWNERS' + - 'LICENSE' + +jobs: + build: + name : CI + runs-on : ubuntu-latest + strategy: + matrix: + include: + - platform: linux/amd64 + - platform: linux/arm64 + steps: + - name : Checkout repository + uses : actions/checkout@v4 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name : CI + run : make ci \ No newline at end of file