Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
mo7amedaliEbaid committed Nov 13, 2023
2 parents 8980051 + 4c09c1b commit 83816a5
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
35 changes: 35 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Test and Lint

on:
push:

jobs:
test:
name: Run test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
# flutter-version: '3.3.10'
channel: 'stable'
- name: Run pub get
run: flutter pub get
- name: Run test
run: flutter test

lint:
name: Run lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
# flutter-version: '3.3.10'
channel: 'stable'
- name: Run pub get
run: flutter pub get
- name: Run analyze
run: flutter analyze
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ A simple project in my journey of learning Test-driven development (TDD) and Tes
### Test-driven development (TDD).

<p float="left">
<img src="https://github.com/mo7amedaliEbaid/weather-TDD/blob/ec3811c9fe871a5f8d0ce10a08773be028416024/learn_tdd/tdd1.png" width="670" height="400" />
<img src="https://github.com/mo7amedaliEbaid/weather-TDD/blob/ec3811c9fe871a5f8d0ce10a08773be028416024/learn_tdd/tdd1.png" width="600" height="400" />
</p>


Expand Down

0 comments on commit 83816a5

Please sign in to comment.