setup-dotnet/README.md

46 lines
999 B
Markdown
Raw Normal View History

2019-07-17 21:45:43 +07:00
# setup-dotnet
2019-06-20 03:22:22 +07:00
2019-07-17 21:45:43 +07:00
This action sets up a dotnet environment for use in actions by:
2019-06-20 03:22:22 +07:00
2019-07-17 21:45:43 +07:00
- optionally downloading and caching a version of dotnet by version and adding to PATH
- registering problem matchers for error output
# Usage
See [action.yml](action.yml)
Basic:
```yaml
2019-07-26 08:27:45 +07:00
steps:
2019-07-24 02:45:43 +07:00
- uses: actions/checkout@master
- uses: actions/setup-dotnet@master
2019-07-17 21:45:43 +07:00
with:
version: 2.2.103 // Version to use.
- run: dotnet build <my project>
```
Matrix Testing:
```yaml
jobs:
build:
strategy:
matrix:
dotnet: [ 2.2.103, 3.5.2, 4.5.1 ]
name: Dotnet ${{ matrix.dotnet }} sample
2019-07-26 08:27:45 +07:00
steps:
2019-07-24 02:45:43 +07:00
- uses: actions/checkout@master
2019-07-17 21:45:43 +07:00
- name: Setup dotnet
2019-07-24 02:45:43 +07:00
uses: actions/setup-dotnet@master
2019-07-17 21:45:43 +07:00
with:
version: ${{ matrix.dotnet }}
- run: dotnet build <my project>
```
2019-06-20 03:22:22 +07:00
# License
The scripts and documentation in this project are released under the [MIT License](LICENSE)
# Contributions
Contributions are welcome! See [Contributor's Guide](docs/contributors.md)