Skip to content

Commit

Permalink
Merge pull request #20 from GunnarMorrigan/release/async_io_wip
Browse files Browse the repository at this point in the history
Release async read write for tokio v0.4.0
  • Loading branch information
GunnarMorrigan authored Nov 28, 2024
2 parents efe77c9 + 634e05b commit 9108239
Show file tree
Hide file tree
Showing 113 changed files with 8,235 additions and 8,825 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
name: Rust


# run on push and pull request to main and release branches
on:
push:
branches: [ "main" ]
branches:
- main
- release/*
pull_request:
branches: [ "main" ]
branches:
- main
- release/*


env:
CARGO_TERM_COLOR: always
Expand All @@ -27,7 +34,7 @@ jobs:
# run clippy to verify we have no warnings
- run: cargo fetch
- name: cargo clippy
run: cargo clippy --all-targets --all-features -- -D warnings
run: cargo clippy -p mqrstt

test:
name: Test
Expand All @@ -45,7 +52,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: EmbarkStudios/cargo-deny-action@v1
- uses: EmbarkStudios/cargo-deny-action@v2

coverage:
name: Coverage
Expand Down Expand Up @@ -77,4 +84,5 @@ jobs:
- name: Upload coverage report
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./lcov.txt
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@
**/target
examples/tokio_tls/Cargo.lock
examples/smol_tls/Cargo.lock
.vscode/**
.vscode/**

Cargo.lock
test.py
Loading

0 comments on commit 9108239

Please sign in to comment.