From 715ff39f12375c5b09f142277e75fc3a64eeb41a Mon Sep 17 00:00:00 2001 From: Lucas Oliveira <62367544+tilucasoli@users.noreply.github.com> Date: Wed, 31 Jan 2024 17:21:29 -0300 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ebc61401a..7545fb555 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,14 +33,13 @@ jobs: # - uses: axel-op/dart-package-analyzer@v3 # with: # githubToken: ${{ secrets.GITHUB_TOKEN }} - - run: flutter test - - - run: cd .. && cd remix + - run: cd main && flutter test - name: Verify if there are any undefined symbols uses: actions/github-script@v7 with: script: | + cd remix flutter analyze | grep 'undefined' if [ $? -eq 0 ]; then core.setFailed('A file contains undefined symbols. Please add a deprecated annotation before you remove it.')