From 678baf7c8b221590bbc2a65ec976997012699fe6 Mon Sep 17 00:00:00 2001 From: chinelo-obitube Date: Wed, 10 Jul 2024 19:57:29 +0200 Subject: [PATCH] rewrite test only functional tests --- .github/workflows/test.yaml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index b9875c101e..162116c295 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -12,6 +12,9 @@ on: jobs: functional_tests: runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 # env: # RECORD_RUNTIME: true @@ -23,17 +26,15 @@ jobs: # outputs: # image: ${{ steps.build-image.outputs.image }} - steps: - - name: Checkout code - uses: actions/checkout@v4 + - - name: set up env - run: | - export RECORD_RUNTIME=true - export LC_ALL=C.UTF-8 - export LANG=C.UTF-8 - export LANGUAGE=C.UTF-8 - export PATH=/root/.local/bin:$PATH + - name: set up env + run: | + export RECORD_RUNTIME=true + export LC_ALL=C.UTF-8 + export LANG=C.UTF-8 + export LANGUAGE=C.UTF-8 + export PATH=/root/.local/bin:$PATH - name: Configure AWS Credentials uses: aws-actions/configure-aws-credentials@v4