Skip to content

Commit

Permalink
Moving fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuem committed Oct 17, 2024
1 parent 7835193 commit aa0eb2e
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 21 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
name: Dart CI
name: package:mockito

on:
# Run on PRs and pushes to the default branch.
# Run on PRs and pushes to the default branch, in either the ffigen directory,
# or the objective_c directory.
push:
branches: [ master ]
branches: [master]
paths:
- '.github/workflows/mockito.yaml'
- 'pkgs/mockito/**'
pull_request:
branches: [ master ]
branches: [master]
paths:
- '.github/workflows/mockito.yaml'
- 'pkgs/mockito/**'
schedule:
- cron: "0 0 * * 0"

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ literate API.
| Package | Description | Version |
|---|---|---|
| [checks](pkgs/checks/) | A framework for checking values against expectations and building custom expectations. | [![pub package](https://img.shields.io/pub/v/checks.svg)](https://pub.dev/packages/checks) |
| [mockito](pkgs/mockito/) | A mock framework inspired by Mockito with APIs for Fakes, Mocks, behavior verification, and stubbing. | [![pub package](https://img.shields.io/pub/v/mockito.svg)](https://pub.dev/packages/mockito) |
| [test](pkgs/test/) | A full featured library for writing and running Dart tests across platforms. | [![pub package](https://img.shields.io/pub/v/test.svg)](https://pub.dev/packages/test) |
| [test_api](pkgs/test_api/) | | [![pub package](https://img.shields.io/pub/v/test_api.svg)](https://pub.dev/packages/test_api) |
| [test_core](pkgs/test_core/) | | [![pub package](https://img.shields.io/pub/v/test_core.svg)](https://pub.dev/packages/test_core) |
15 changes: 0 additions & 15 deletions pkgs/mockito/.github/dependabot.yml

This file was deleted.

3 changes: 2 additions & 1 deletion pkgs/mockito/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 5.4.5-wip
## 5.4.5

* Ignore "must_be_immutable" warning in generated files. Mocks cannot be made
immutable anyway, but this way users aren't prevented from using generated
Expand All @@ -9,6 +9,7 @@
* Require dart_style >= 2.3.7, so that the current Dart language version can be
passed to `DartFormatter`.
* Add topics to `pubspec.yaml`.
* Move to `dart-lang/test` monorepo.

## 5.4.4

Expand Down
2 changes: 1 addition & 1 deletion pkgs/mockito/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: mockito
version: 5.4.5-wip
version: 5.4.5
description: >-
A mock framework inspired by Mockito with APIs for Fakes, Mocks,
behavior verification, and stubbing.
Expand Down

0 comments on commit aa0eb2e

Please sign in to comment.