Resources
- Find the Github link here
Travis-CI
Let's add .travis.yml
file add the following content.
language: csharp
dist: xenial
dotnet: 3.1
solution: calcy.sln
script:
- dotnet build
- dotnet test
Sign in to Travis and use this documentation to set up travis for github.
Final Comments
We have successfully made a Math Interpreter. I hope you have gained something from this series. Going forward you can now add other features like;
- Add Math Power
- Add Support for Exponential Numbers
- Add Square root
Thank you for making time to follow this series, until next time KEEP HACKING 😊.
Top comments (0)