From 44d52623ced599ea7cd602c61a113822c53dd445 Mon Sep 17 00:00:00 2001 From: Alfi Maulana Date: Sun, 8 Jan 2023 14:10:50 +0700 Subject: [PATCH] remove use action with additional args test (already tested on other job --- .github/workflows/test.yml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6c29376..4f1f6cc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -72,21 +72,3 @@ jobs: - name: Run build result run: build/${{ matrix.lang == 'C' && 'hello_world_c' || 'hello_world' }} - - use-action-with-additional-args: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v3.3.0 - - - name: Use this action with build txt enabled - uses: ./ - with: - source-dir: test - args: -D BUILD_TXT=ON - - - name: Run build result - run: build/hello_world - - - name: Check if the txt result exist - run: cat build/hello_world.txt