From eeff46fa54b8a81498b06895cdd2f8c836711522 Mon Sep 17 00:00:00 2001 From: AHReccese Date: Thu, 13 Jun 2024 19:05:53 +0330 Subject: [PATCH] replace dir with ls --- .github/workflows/test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 59c99d0..65c823a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -34,22 +34,22 @@ jobs: - name: CLI Tests - Clear single .docx file run: | dmeta --clear "tests/test_a.docx" - dir ./tests + ls ./tests - name: CLI Tests - Clear all .docx files run: | cd ./tests dmeta --clear-all - dir . + ls . cd - - name: CLI Tests - Update single .docx file run: | dmeta --update "tests/test_a.docx" --config "tests/config.json" - dir ./tests + ls ./tests - name: CLI Tests - Update all .docx files run: | cd ./tests - dmeta --update-all --config "tests/config.json" - dir . + dmeta --update-all --config "./config.json" + ls . cd - - name: Test requirements Installation run: |