Skip to content

Commit

Permalink
Merge pull request #5 from whl2606555/dev
Browse files Browse the repository at this point in the history
fix: completed job not removed from queue
  • Loading branch information
RecordingTheSmile committed Oct 25, 2023
2 parents 8b8181a + 3519f61 commit ac21757
Show file tree
Hide file tree
Showing 4 changed files with 275 additions and 242 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@ on:

jobs:
check:
name: Check
name: Check and Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check crate
run: cargo check
- name: Test crate
run: cargo test

publish:
name: Publish
Expand Down
5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
[package]
name = "tokio-scheduler-rs"
version = "1.1.5"
version = "1.1.6"
edition = "2021"
description = "Yet Another JobScheduler written with tokio runtime, automatic retry, hook and custom storage supported."
license = "MIT"
documentation = "https://docs.rs/tokio-scheduler-rs"
homepage = "https://github.com/whl2606555/tokio-scheduler-rs"
repository = "https://github.com/whl2606555/tokio-scheduler-rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
exclude = ['./tests']
readme = "README.MD"

[dependencies]
serde_json = "^1"
Expand Down
Loading

0 comments on commit ac21757

Please sign in to comment.