Skip to content

Commit 9108239

Browse files
Merge pull request #20 from GunnarMorrigan/release/async_io_wip
Release async read write for tokio v0.4.0
2 parents efe77c9 + 634e05b commit 9108239

File tree

113 files changed

+8235
-8825
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+8235
-8825
lines changed

.github/workflows/rust.yml

+12-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
name: Rust
22

3+
4+
# run on push and pull request to main and release branches
35
on:
46
push:
5-
branches: [ "main" ]
7+
branches:
8+
- main
9+
- release/*
610
pull_request:
7-
branches: [ "main" ]
11+
branches:
12+
- main
13+
- release/*
14+
815

916
env:
1017
CARGO_TERM_COLOR: always
@@ -27,7 +34,7 @@ jobs:
2734
# run clippy to verify we have no warnings
2835
- run: cargo fetch
2936
- name: cargo clippy
30-
run: cargo clippy --all-targets --all-features -- -D warnings
37+
run: cargo clippy -p mqrstt
3138

3239
test:
3340
name: Test
@@ -45,7 +52,7 @@ jobs:
4552
runs-on: ubuntu-22.04
4653
steps:
4754
- uses: actions/checkout@v3
48-
- uses: EmbarkStudios/cargo-deny-action@v1
55+
- uses: EmbarkStudios/cargo-deny-action@v2
4956

5057
coverage:
5158
name: Coverage
@@ -77,4 +84,5 @@ jobs:
7784
- name: Upload coverage report
7885
uses: codecov/codecov-action@v3
7986
with:
87+
token: ${{ secrets.CODECOV_TOKEN }}
8088
files: ./lcov.txt

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@
22
**/target
33
examples/tokio_tls/Cargo.lock
44
examples/smol_tls/Cargo.lock
5-
.vscode/**
5+
.vscode/**
6+
7+
Cargo.lock
8+
test.py

0 commit comments

Comments
 (0)