From 24561adfa7d5a3783aab92f0fdc6e92f4f5dead7 Mon Sep 17 00:00:00 2001 From: Ezequiel Raynaudo Date: Mon, 25 Nov 2024 10:53:58 -0300 Subject: [PATCH] add custom action --- .github/workflows/build-crypto-provider.yml | 24 +++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/build-crypto-provider.yml diff --git a/.github/workflows/build-crypto-provider.yml b/.github/workflows/build-crypto-provider.yml new file mode 100644 index 0000000..f931022 --- /dev/null +++ b/.github/workflows/build-crypto-provider.yml @@ -0,0 +1,24 @@ +name: Build Crypto-Provider +on: + pull_request: + push: + branches: + - main + - release/** +permissions: + contents: read + +concurrency: + group: ci-${{ github.ref }}-build-crypto-provider + cancel-in-progress: true + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 + with: + go-version: "1.23.0" + - name: Build + run: make \ No newline at end of file