From 46d74ac103c63ead75163c0796ab7b9b2e0c920e Mon Sep 17 00:00:00 2001 From: Nasir Hossain Nishad Date: Fri, 16 Feb 2024 17:51:49 +0600 Subject: [PATCH] feat: add test github action --- .github/workflows/test.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..d21d793 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,25 @@ +name: Test + +on: + push: + branches: + - feature + pull_request: + types: + - opened + - reopened + branches: + - master + +jobs: + build: + runs-on: ubuntu-latest + permissions: + contents: write + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Run build + run: ./build.bash \ No newline at end of file