Skip to content

[dependabot]: Bump peter-evans/create-or-update-comment from 4 to 5 #353

[dependabot]: Bump peter-evans/create-or-update-comment from 4 to 5

[dependabot]: Bump peter-evans/create-or-update-comment from 4 to 5 #353

Workflow file for this run

name: Run Tests
on:
pull_request:
types: [opened, synchronize]
concurrency:
group: flutter-tests-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: macOS-14
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Setup Emulator
uses: futureware-tech/simulator-action@v4
with:
model: 'iPhone 15'
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
cache: true
architecture: x64
flutter-version: '3.29.1'
- name: Create .env file
run: |
cat <<EOF > .env
MAPBOX_ACCESS_TOKEN=token
SENTRY_DSN=dsn
KEYSTORE_FILE=path
KEYSTORE_PASSWORD=password
KEY_ALIAS=alias
KEY_PASSWORD=password
EOF
- name: Run tests
run: flutter test --concurrency=1