From 6641924f40768c9c92f9c522848f61517ce4c0d6 Mon Sep 17 00:00:00 2001 From: Ziadsaeed00 <123216442+Ziadsaeed00@users.noreply.github.com> Date: Thu, 11 Jun 2026 04:20:44 +0300 Subject: [PATCH 1/2] Update autoflex.plist --- autoflex.plist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoflex.plist b/autoflex.plist index 52229f4..e23ef64 100644 --- a/autoflex.plist +++ b/autoflex.plist @@ -1 +1 @@ -{ Filter = { Bundles = ( "-" ); }; } +{ Filter = { Bundles = ( "com.tempnum.virtualnumber" ); }; } From 83273e488dad7313c85fde59ee056ee4a847dfa9 Mon Sep 17 00:00:00 2001 From: Ziadsaeed00 <123216442+Ziadsaeed00@users.noreply.github.com> Date: Thu, 11 Jun 2026 04:26:40 +0300 Subject: [PATCH 2/2] Create makefile.yml --- .github/workflows/makefile.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/makefile.yml diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml new file mode 100644 index 0000000..8789c17 --- /dev/null +++ b/.github/workflows/makefile.yml @@ -0,0 +1,27 @@ +name: Makefile CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: configure + run: ./configure + + - name: Install dependencies + run: make + + - name: Run check + run: make check + + - name: Run distcheck + run: make distcheck