Skip to content

Commit

Permalink
core: add readme tags links to jobs (#317)
Browse files Browse the repository at this point in the history
  • Loading branch information
ramiroaisen authored Jul 22, 2024
2 parents 842cee0 + 4fbe406 commit ae9fe87
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
19 changes: 9 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@

![build](https://github.com/ramiroaisen/openstream-rs/actions/workflows/cargo-build.yml/badge.svg)
![unit tests](https://github.com/ramiroaisen/openstream-rs/actions/workflows/cargo-unit-tests.yml/badge.svg)
![integration tests](https://github.com/ramiroaisen/openstream-rs/actions/workflows/cargo-integration-tests.yml/badge.svg)
![front server build](https://github.com/ramiroaisen/openstream-rs/actions/workflows/front-server-build.yml/badge.svg)
![front server unit tests](https://github.com/ramiroaisen/openstream-rs/actions/workflows/front-server-unit-tests.yml/badge.svg)
![front studio build](https://github.com/ramiroaisen/openstream-rs/actions/workflows/front-studio-build.yml/badge.svg)
![front studio typecheck](https://github.com/ramiroaisen/openstream-rs/actions/workflows/front-studio-typecheck.yml/badge.svg)
![front admin build](https://github.com/ramiroaisen/openstream-rs/actions/workflows/front-admin-build.yml/badge.svg)
![front admin typecheck](https://github.com/ramiroaisen/openstream-rs/actions/workflows/front-admin-typecheck.yml/badge.svg)

[![build](https://github.com/ramiroaisen/openstream-rs/actions/workflows/cargo-build.yml/badge.svg)](https://github.com/ramiroaisen/openstream-rs/actions/workflows/cargo-build.yml)
[![unit tests](https://github.com/ramiroaisen/openstream-rs/actions/workflows/cargo-unit-tests.yml/badge.svg)](https://github.com/ramiroaisen/openstream-rs/actions/workflows/cargo-unit-tests.yml)
[![integration tests](https://github.com/ramiroaisen/openstream-rs/actions/workflows/cargo-integration-tests.yml/badge.svg)](https://github.com/ramiroaisen/openstream-rs/actions/workflows/cargo-integration-tests.yml)
[![front server build](https://github.com/ramiroaisen/openstream-rs/actions/workflows/front-server-build.yml/badge.svg)](https://github.com/ramiroaisen/openstream-rs/actions/workflows/front-server-build.yml)
[![front server unit tests](https://github.com/ramiroaisen/openstream-rs/actions/workflows/front-server-unit-tests.yml/badge.svg)](https://github.com/ramiroaisen/openstream-rs/actions/workflows/front-server-unit-tests.yml)
[![front studio build](https://github.com/ramiroaisen/openstream-rs/actions/workflows/front-studio-build.yml/badge.svg)](https://github.com/ramiroaisen/openstream-rs/actions/workflows/front-studio-build.yml)
[![front studio typecheck](https://github.com/ramiroaisen/openstream-rs/actions/workflows/front-studio-typecheck.yml/badge.svg)](https://github.com/ramiroaisen/openstream-rs/actions/workflows/front-studio-typecheck.yml)
[![front admin build](https://github.com/ramiroaisen/openstream-rs/actions/workflows/front-admin-build.yml/badge.svg)](https://github.com/ramiroaisen/openstream-rs/actions/workflows/front-admin-build.yml)
[![front admin typecheck](https://github.com/ramiroaisen/openstream-rs/actions/workflows/front-admin-typecheck.yml/badge.svg)](https://github.com/ramiroaisen/openstream-rs/actions/workflows/front-admin-typecheck.yml)


# Openstream Radio Streaming Server
Expand Down
2 changes: 1 addition & 1 deletion rs/packages/spsc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ impl Error for TryRecvError {}

#[derive(Debug)]
struct State<T> {
item: Option<T>,
send_dropped: bool,
recv_dropped: bool,
recv_waker: Option<Waker>,
send_waker: Option<Waker>,
item: Option<T>,
}

pub struct Sender<T> {
Expand Down

0 comments on commit ae9fe87

Please sign in to comment.