diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 31d6b11..b81b091 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,6 +15,7 @@ on: jobs: # This workflow contains a single job called "build" test: + if: github.actor != 'weblate' # The type of runner that the job will run on runs-on: ubuntu-latest defaults: @@ -23,9 +24,6 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: - - env: - ACTOR: ${{ github.actor }} - run: echo $ACTOR # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v3 - uses: actions/setup-java@v2 @@ -39,8 +37,10 @@ jobs: - uses: subosito/flutter-action@v2 with: flutter-version: '3.10.5' + - run: flutter pub get - run: flutter test --coverage + - name: Coveralls GitHub Action uses: coverallsapp/github-action@v2 with: