Skip to content

Commit 2dfdd78

Browse files
Http integration (cloudevents#32)
* Going forward, but something is wrong Signed-off-by: Francesco Guardiani <[email protected]> * Serializers now return the serialization result Signed-off-by: Francesco Guardiani <[email protected]> * Everything compiles Signed-off-by: Francesco Guardiani <[email protected]> * first test up!!! Signed-off-by: Francesco Guardiani <[email protected]> * All compiles! Signed-off-by: Francesco Guardiani <[email protected]> * Fmt'ed the project Signed-off-by: Francesco Guardiani <[email protected]> * Cargo fix Signed-off-by: Francesco Guardiani <[email protected]> * Readme changes + github actions changes Signed-off-by: Francesco Guardiani <[email protected]> * Cargo fix and cargo fmt produces inconsistent results... Signed-off-by: Francesco Guardiani <[email protected]> * Removed useless dependency in cloudevents-sdk-actix-web Signed-off-by: Francesco Guardiani <[email protected]> * Removed str_strip Signed-off-by: Francesco Guardiani <[email protected]> * Fixed exports of the crate + added some docs Signed-off-by: Francesco Guardiani <[email protected]>
1 parent 304a2e7 commit 2dfdd78

30 files changed

+1989
-226
lines changed

.github/workflows/master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ jobs:
4747
with:
4848
command: build
4949
toolchain: ${{ matrix.toolchain }}
50-
args: --target ${{ matrix.target }}
50+
args: --target ${{ matrix.target }} --all
5151
- uses: actions-rs/cargo@v1
5252
with:
5353
command: test
5454
toolchain: ${{ matrix.toolchain }}
55-
args: --target ${{ matrix.target }}
55+
args: --target ${{ matrix.target }} --all

.github/workflows/pr.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,13 @@ jobs:
3535
command: build
3636
toolchain: stable
3737
target: x86_64-unknown-linux-gnu
38+
args: --all
3839
- uses: actions-rs/cargo@v1
3940
with:
4041
command: test
4142
toolchain: stable
4243
target: x86_64-unknown-linux-gnu
44+
args: --all
4345

4446
fmt:
4547
name: Format check

0 commit comments

Comments
 (0)