Skip to content

Commit

Permalink
Feature/update to dart 3 (#17)
Browse files Browse the repository at this point in the history
* Update to dart 3.0.0
* Update license
  • Loading branch information
PlugFox committed May 13, 2023
1 parent 212156d commit 5bc8a12
Show file tree
Hide file tree
Showing 17 changed files with 379 additions and 232 deletions.
91 changes: 91 additions & 0 deletions .github/workflows/checkout.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
name: Checkout

on:
workflow_dispatch:
push:
branches:
- "master"
- "develop"
- "feature/**"
- "bugfix/**"
- "hotfix/**"
- "support/**"
paths:
- "lib/**.dart"
- "test/**.dart"
- "example/**.dart"
- "pubspec.yaml"
pull_request:
branches:
- "master"
- "develop"
- "feature/**"
- "bugfix/**"
- "hotfix/**"
- "support/**"
paths:
- "lib/**.dart"
- "test/**.dart"
- "example/**.dart"
- "pubspec.yaml"

jobs:
checkout:
name: "Checkout"
runs-on: ubuntu-latest
container:
image: dart:beta
defaults:
run:
working-directory: ./
timeout-minutes: 10
steps:
- name: 🚂 Get latest code
uses: actions/checkout@v3
with:
fetch-depth: 2

- name: 🚃 Cache pub modules
uses: actions/cache@v2
env:
cache-name: cache-ws-package
with:
path: |
$PWD/.pub_cache/
key: ${{ runner.os }}-ws-${{ env.cache-name }}-${{ hashFiles('**/pubspec.yaml') }}

- name: 🗄️ Export pub cache directory
run: export PUB_CACHE=$PWD/.pub_cache/

- name: 👷 Install Dependencies
timeout-minutes: 1
run: |
dart pub get
- name: 🔎 Check format
timeout-minutes: 1
run: dart format --set-exit-if-changed -l 80 -o none .

- name: 📈 Check analyzer
timeout-minutes: 1
run: dart analyze --fatal-infos --fatal-warnings lib

#- name: Check with pana
# run: dart pub global activate pana && pana --json --no-warning --line-length 80
- name: 🧪 Run tests
run: |
dart test --coverage=coverage \
&& dart run coverage:format_coverage --lcov --in=coverage \
--out=coverage/lcov.info --report-on=lib
- name: 📥 Upload coverage to Codecov
uses: codecov/codecov-action@v2.1.0
with:
token: ${{ secrets.CODECOV_TOKEN }}

- name: 🧮 Check Code Coverage
uses: VeryGoodOpenSource/very_good_coverage@v1.2.1
with:
path: coverage/lcov.info
min_coverage: 90
#exclude: '**.g.dart **.freezed.dart'
57 changes: 0 additions & 57 deletions .github/workflows/main.yml

This file was deleted.

4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,8 @@ doc
pubspec.lock
coverage*

# Test
.coverage/
/test/**/*.json
/test/.test_coverage.dart
log.pana.json
57 changes: 57 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
// https://pub.dev/packages/test
// dart test test/ws_test.dart --color --platform=vm
{
"name": "Test (VM)",
"request": "launch",
"type": "dart",
"program": "test/platform_info_test.dart",
"env": {
"ENVIRONMENT": "test"
},
"console": "debugConsole",
"runTestsOnDevice": false,
"templateFor": "test",
"toolArgs": [
"--color",
"--debug",
"--coverage=.coverage",
"--reporter=expanded",
"--platform=vm", // chrome
"--file-reporter=json:.coverage/tests.json",
"--timeout=30s",
"--concurrency=12"
],
"args": []
},
// dart test test/ws_test.dart --color --platform=chrome
{
"name": "Test (Browser)",
"request": "launch",
"type": "dart",
"program": "test/platform_info_test.dart",
"env": {
"ENVIRONMENT": "test"
},
"console": "debugConsole",
"runTestsOnDevice": false,
"templateFor": "test",
"toolArgs": [
"--color",
"--debug",
"--coverage=.coverage",
"--reporter=expanded",
"--platform=chrome",
"--file-reporter=json:.coverage/tests.json",
"--timeout=30s",
"--concurrency=12"
],
"args": []
}
]
}

1 comment on commit 5bc8a12

@vercel
Copy link

@vercel vercel bot commented on 5bc8a12 May 13, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

platform-info – ./

platform-info-plugfox.vercel.app
platform-info-git-master-plugfox.vercel.app
platform-info.vercel.app

Please sign in to comment.