setup-dotnet/README.md

46 lines
1003 B
Markdown
Raw Normal View History

2019-07-17 14:45:43 +00:00
# setup-dotnet
2019-06-19 20:22:22 +00:00
2019-07-17 14:45:43 +00:00
This action sets up a dotnet environment for use in actions by:
2019-06-19 20:22:22 +00:00
2019-07-17 14:45:43 +00: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
actions:
2019-07-23 19:45:43 +00:00
- uses: actions/checkout@master
- uses: actions/setup-dotnet@master
2019-07-17 14:45:43 +00: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
actions:
2019-07-23 19:45:43 +00:00
- uses: actions/checkout@master
2019-07-17 14:45:43 +00:00
- name: Setup dotnet
2019-07-23 19:45:43 +00:00
uses: actions/setup-dotnet@master
2019-07-17 14:45:43 +00:00
with:
version: ${{ matrix.dotnet }}
- run: dotnet build <my project>
```
2019-06-19 20:22:22 +00: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)