Skip to content

Commit

Permalink
ci added for unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
selimserbes committed Jun 14, 2024
1 parent c0f7c38 commit ff841f7
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 4 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci_unit_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Unit tests for rs_openshowvar

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up Rust
uses: actions/setup-rust@v1
with:
toolchain: stable

- name: Run unit tests
run: cargo test --test unit
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,7 @@

- Library definition errors have been fixed.
- Additional information notes were added to the README.md section.

## [0.1.6] - 2024-06-14

- Github repository name was changed from `rs_openshowvar` to `rs-openshowvar`.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "rs_openshowvar"
version = "0.1.5"
version = "0.1.6"
authors = ["Selim Serbes <[email protected]>"]
edition = "2021"
description = "A Rust library for connecting to Kuka robots and performing data read/write operations using the OpenShowVar protocol."
license = "MIT"
repository = "https://github.com/selimserbes/rs_openshowvar"
repository = "https://github.com/selimserbes/rs-openshowvar"
documentation = "https://docs.rs/rs_openshowvar"
readme = "README.md"
keywords = ["kuka", "robotics", "automation", "network", "tcp"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Add `rs_openshowvar` as a dependency in your `Cargo.toml`:

```toml
[dependencies]
rs_openshowvar = "0.1.5"
rs_openshowvar = "0.1.6"
```

## Usage
Expand Down

0 comments on commit ff841f7

Please sign in to comment.