Skip to content

fix: try a different semantic_version #7578

fix: try a different semantic_version

fix: try a different semantic_version #7578

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
# uses: ./.github/workflows/build_test.yml
release:
if: github.event_name != 'pull_request'
needs: [test]
secrets: inherit
uses: ./.github/workflows/release.yml