From 1615d00fcaab061cea04586da64c7e403e4b4049 Mon Sep 17 00:00:00 2001 From: Praveen Kumar Date: Mon, 2 Dec 2024 16:43:36 +0530 Subject: [PATCH] Add action to test --- .github/workflows/crc-action.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/crc-action.yml diff --git a/.github/workflows/crc-action.yml b/.github/workflows/crc-action.yml new file mode 100644 index 0000000..35559d4 --- /dev/null +++ b/.github/workflows/crc-action.yml @@ -0,0 +1,21 @@ +name: crc-action + +on: + workflow_dispatch: + push: + branches: + - main + pull_request: + branches: + - '*' + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Check out code + uses: actions/checkout@v4 + + - name: CRC Action + uses: ./ +