Skip to content

Commit

Permalink
Sync 0.6.0-dev.13
Browse files Browse the repository at this point in the history
  • Loading branch information
ykmnkmi committed Feb 18, 2024
1 parent a64f5c9 commit 480bd25
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,12 @@ jobs:
- name: Analyze
run: dart analyze --fatal-infos --fatal-warnings .

- name: Run Tests
- name: Run WEB Tests
if: matrix.sdk != '3.0.0'
run: |
dart test --platform chrome
- name: Run VM Tests
run: |
dart pub global activate coverage
dart test --coverage=coverage && dart pub global run coverage:format_coverage --lcov --in=coverage --out=coverage/lcov.info --report-on=lib
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.6.0-dev.12
## 0.6.0-dev.13
- internal changes.
- `chrome` platform tests.
- added:
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: jinja
version: 0.6.0-dev.12
version: 0.6.0-dev.13
description: >-
Jinja2 template engine for Dart.
Variables, expressions, control structures and template inheritance.
Expand Down

0 comments on commit 480bd25

Please sign in to comment.