Skip to content

Add key properties to Github workflows and add example keystore and properties for local development #1874

Add key properties to Github workflows and add example keystore and properties for local development

Add key properties to Github workflows and add example keystore and properties for local development #1874

Workflow file for this run

name: Test
on:
pull_request:
branches:
- beta
- dev
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: self-hosted
# When upgrading: also upgrade dev.yaml, release.yaml, and test.yaml
container: ghcr.io/cirruslabs/flutter:3.19.6
steps:
- uses: actions/checkout@v2
- name: Run unit tests and check for styling errors
run: |
flutter pub get
dart format --line-length 120 --set-exit-if-changed .
flutter analyze .
flutter test