Skip to content

Commit

Permalink
Update presubmit.yml (#5548)
Browse files Browse the repository at this point in the history
  • Loading branch information
teolemon authored Aug 17, 2024
1 parent a17d17a commit 2f1509e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/presubmit.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: SmoothApp Pre-Submit Tests
name: 🤳🥫 Open Food Facts mobile app Pre-Submit Tests

on:
pull_request:
Expand All @@ -17,14 +17,14 @@ jobs:
shell: bash

steps:
- name: Checkout code
- name: 📂 Checkout code
uses: actions/checkout@v4

# Get the Flutter version from ./flutter-version.txt
- run: echo "FLUTTER_VERSION=$(cat flutter-version.txt)" >> $GITHUB_OUTPUT
id: flutter-version

- name: Setup Flutter
- name: 🪺 Setup Flutter
uses: subosito/flutter-action@v2
with:
#channel: stable
Expand All @@ -35,19 +35,19 @@ jobs:
- run: flutter --version

# Get dependencies
- name: Get dependencies
- name: 📦 Get dependencies
run: ci/pub_upgrade.sh

# Check for formatting issues
- name: Check for formatting issues (run "dart format . ")
- name: 🧹 Check for formatting issues (run "dart format . ")
run: dart format --set-exit-if-changed .

# Analyze Dart for errors
- name: Analyze code
run: flutter analyze --fatal-infos --fatal-warnings .

# Run tests
- name: Run Tests with coverage
- name: 🧪 Run Tests with coverage
run: ci/testing.sh

- name: Upload coverage to codecov
Expand Down

0 comments on commit 2f1509e

Please sign in to comment.