Skip to content

Commit

Permalink
Merge pull request #69 from dwyl/update-info
Browse files Browse the repository at this point in the history
[PR] Updating README with latest version.
  • Loading branch information
nelsonic authored Jan 13, 2023
2 parents b665295 + 7701f33 commit 9f684aa
Show file tree
Hide file tree
Showing 245 changed files with 7,343 additions and 3,788 deletions.
Binary file removed .DS_Store
Binary file not shown.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
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
38 changes: 21 additions & 17 deletions .github/workflows/ci.yml
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)
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ pubspec.lock
# If you don't generate documentation locally you can remove this line.
doc/api/

.idea
.idea
.DS_Store
Loading

0 comments on commit 9f684aa

Please sign in to comment.