From 7a99092c4322a2f21e74da2b145419d7674e3b0c Mon Sep 17 00:00:00 2001 From: Lucas Oliveira <62367544+tilucasoli@users.noreply.github.com> Date: Thu, 1 Feb 2024 10:44:43 -0300 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5c7c25f..ce982e3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,29 +9,20 @@ on: jobs: test_mix_repo: runs-on: ubuntu-latest - name: Test Mix Repo + name: Test remix Repo steps: - - name: Checkout mix repo - uses: actions/checkout@v2 - with: - path: main - - name: Checkout remix_ui repo uses: actions/checkout@v2 - with: - repository: conceptadev/remix_ui - path: remix - name: Setup Flutter uses: subosito/flutter-action@v2 with: channel: "stable" - - run: cd main && flutter pub get + - run: flutter pub get - uses: axel-op/dart-package-analyzer@v3 with: githubToken: ${{ secrets.GITHUB_TOKEN }} - relativePath: main - - run: cd main && flutter test + - run: flutter test