Skip to content

Commit e55d0b9

Browse files
authored
Merge pull request #4 from mikejobson/feature/readme-updates
Feature/readme-updates
2 parents 4f1d1a4 + 3b43017 commit e55d0b9

File tree

1 file changed

+53
-2
lines changed

1 file changed

+53
-2
lines changed

README.md

Lines changed: 53 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,62 @@
22

33
This package is just for CI and publish testing only. Do not use! 🙂
44

5+
![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/mikejobson/dotnet-actions-testing/test.yml?branch=main&style=flat&logo=github&label=status)
6+
![GitHub Issues or Pull Requests](https://img.shields.io/github/issues/mikejobson/dotnet-actions-testing?style=flat&logo=github)
7+
![GitHub Issues or Pull Requests](https://img.shields.io/github/issues-pr/mikejobson/dotnet-actions-testing?style=flat&logo=github)
58
![NuGet Version](https://img.shields.io/nuget/v/UXAV.TestLib?style=flat&logo=nuget)
6-
![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/mikejobson/dotnet-actions-testing/test.yml?branch=main&style=flat&logo=github&label=Test%20Build)
9+
![NuGet Downloads](https://img.shields.io/nuget/dt/UXAV.TestLib?style=flat&logo=nuget)
10+
![GitHub License](https://img.shields.io/github/license/mikejobson/dotnet-actions-testing?style=flat)
711

8-
---
12+
## Links
913

1014
GitHub Repository: [dotnet-actions-testing](https://github.com/mikejobson/dotnet-actions-testing)
1115

1216
NuGet Package: [UXAV.TestLib](https://www.nuget.org/packages/UXAV.TestLib/)
17+
18+
## Contributing
19+
20+
Contributions are welcome! If you would like to contribute to this project, please follow these guidelines:
21+
22+
1. Fork the repository.
23+
2. Create a new branch for your feature or bug fix.
24+
3. Make your changes and commit them.
25+
4. Push your changes to your forked repository.
26+
5. Submit a pull request to the main repository.
27+
28+
Please ensure that your code follows the project's coding conventions and includes appropriate tests.
29+
30+
- For feature branches use the name `feature/feature-name`
31+
- Version numbers are checked against existing tags and fail CI on match
32+
33+
Thank you for your interest in contributing to this project!
34+
35+
## Usage
36+
37+
To use this test library in your project, follow these steps:
38+
39+
1. Install the package via NuGet. You can use the following command in the Package Manager Console:
40+
41+
```
42+
dotnet add [<PROJECT>] package UXAV.TestLib
43+
```
44+
45+
2. Import the library in your code file:
46+
47+
```csharp
48+
using UXAV.TestLib;
49+
```
50+
51+
3. Start using the library's features in your code:
52+
```csharp
53+
var testLib = new TestLibrary();
54+
testLib.DoSomething();
55+
```
56+
57+
## Documentation
58+
59+
Add documentation here
60+
61+
## License
62+
63+
This project is licensed under the [MIT License](LICENSE).

0 commit comments

Comments
 (0)