Skip to content

ci: test run

ci: test run #7574

Workflow file for this run

name: Testing
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- master
- beta
pull_request:
branches:
- master
- beta
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Installing Flutter SDK
uses: subosito/[email protected]
with:
channel: stable
- name: Install app dependencies
run: flutter pub get
- name: Unit Test app
run: flutter test --coverage
build_test:
needs: [test]
secrets: inherit
if: false
uses: ./.github/workflows/build_test.yml
release:
if: github.event_name != 'pull_request'
needs: [test]
secrets: inherit
uses: ./.github/workflows/release.yml