Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
muhammad-fiaz committed May 18, 2023
2 parents 934429d + 9fe1e4f commit 5802d94
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/dart.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Flutter

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Flutter
uses: subosito/flutter-action@v2

- name: Install dependencies
run: flutter pub get

# Uncomment this step to format the code using 'flutter format' on each commit.
# - name: Verify formatting
# run: flutter format --set-exit-if-changed .

- name: Analyze project source
run: flutter analyze

- name: Run tests
run: flutter test

0 comments on commit 5802d94

Please sign in to comment.