From 642464a786e946718879af7cd228c8c9a7d0673b Mon Sep 17 00:00:00 2001 From: Harrison Date: Tue, 18 Jun 2024 18:16:09 -0400 Subject: [PATCH] Add pull request workflow (#1359) --- .github/workflows/pull_request.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/pull_request.yaml diff --git a/.github/workflows/pull_request.yaml b/.github/workflows/pull_request.yaml new file mode 100644 index 00000000..ca5a9d2d --- /dev/null +++ b/.github/workflows/pull_request.yaml @@ -0,0 +1,16 @@ +name: Pull Request + +on: + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: build binaries + env: + CROSS: 1 + VERSION: ${{ github.ref_name }} + run: | + make build-rancher