jobs:
testrunner:
runs-on: ubuntu-latest
steps:
- name: Run tests
uses: likvido/action-test@v1
You can optionally specify some parameters as well:
jobs:
testrunner:
runs-on: ubuntu-latest
steps:
- name: Run tests
uses: likvido/action-test@v1
with:
framework: net8.0
test-target: src/MySolution.sln
logger: GitHubActions
NOTE: If you want to use the GitHubActions logger, you have to install the GitHubActionsTestLogger NuGet package in your test projects first
Either create the new release + new version tag directly in the Github UI, or create it like this:
- Commit and push your changes
- Create a new tag:
git tag -a -m "Description of this release" <version> - Push the tag:
git push --follow-tags
git tag -a -m "First version" v1
git push --follow-tags