-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #69 from dwyl/update-info
[PR] Updating README with latest version.
- Loading branch information
Showing
245 changed files
with
7,343 additions
and
3,788 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: mix | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
time: "12:00" | ||
timezone: Europe/London |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,38 @@ | ||
name: flutter_tests | ||
name: Build | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [main] | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
tests: | ||
runs-on: ubuntu-latest | ||
build: | ||
runs-on: macos-latest | ||
defaults: | ||
run: | ||
working-directory: ./demo_app | ||
|
||
steps: | ||
- name: Checkout the code | ||
uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install and set Flutter version | ||
uses: subosito/flutter-action@v2.8.0 | ||
# Installing Flutter because it's easier to generate .lcov files for test coverage | ||
- name: Install Flutter | ||
uses: subosito/flutter-action@v2 | ||
with: | ||
flutter-version: '3.0.5' | ||
flutter-version: '3.3.8' | ||
channel: 'stable' | ||
|
||
- name: Restore packages | ||
- name: Install dependencies | ||
run: flutter pub get | ||
|
||
- name: Analyze | ||
run: flutter analyze | ||
|
||
# Your project will need to have tests in test/ and a dependency on | ||
# package:test for this step to succeed. Note that Flutter projects will | ||
# want to change this to 'flutter test'. | ||
- name: Run tests | ||
run: flutter test --coverage | ||
|
||
- name: Upload coverage to codecov | ||
run: curl -s https://codecov.io/bash | ||
shell: bash | ||
- uses: codecov/codecov-action@v2 | ||
with: | ||
files: coverage/lcov.info | ||
verbose: true # optional (default = false) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.