Skip to content

Commit ff10ead

Browse files
authored
update github actions to include serializers package (#458)
* extract serializers to seperate package * clean pubspec * compat with new dio version, return uint8list in test mocks instead of list<int> * add github actions to new serializers package
1 parent 78a1eb3 commit ff10ead

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/dependabot.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
version: 2
77
updates:
8-
- package-ecosystem: "" # See documentation for possible values
8+
- package-ecosystem: "pub" # See documentation for possible values
99
directory: "/" # Location of package manifests
1010
schedule:
1111
interval: "weekly"

.github/workflows/dart.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ jobs:
88
matrix:
99
package:
1010
- gql
11+
- gql_exec
12+
- gql_code_builder_serializers
1113
- gql_build
1214
- gql_code_builder
13-
- gql_exec
1415
- gql_link
1516
- gql_dedupe_link
1617
- gql_dio_link

.github/workflows/publish_alpha.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
image: dart:latest
1111
if: github.ref == 'refs/heads/master'
1212
env:
13-
PACKAGES: 'gql,gql_build,gql_code_builder,gql_dedupe_link,gql_dio_link,gql_exec,gql_http_link,gql_link,gql_pedantic,gql_transform_link,gql_error_link,gql_websocket_link'
13+
PACKAGES: 'gql,gql_code_builder_serializers,gql_build,gql_code_builder,gql_dedupe_link,gql_dio_link,gql_exec,gql_http_link,gql_link,gql_pedantic,gql_transform_link,gql_error_link,gql_websocket_link'
1414
steps:
1515
- name: Clone repository
1616
uses: actions/checkout@v2

0 commit comments

Comments
 (0)