Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ GitHub Actions is powerful, but writing workflows can sometimes feel repetitive,
To use **Rust GitHub Workflows** in your project, add it to your `Cargo.toml`:

```toml
[build-dependencies]
[dev-dependencies]
gh-workflow = "*" # Add the latest version
```

Expand All @@ -35,7 +35,7 @@ Then you can start creating GitHub Actions in your [tests/ci.rs](https://github.
- Add the following code to generate the GitHub Actions workflow:

```rust
use gh_workflows::*;
use gh_workflow::*;

#[test]
fn main() {
Expand Down