setup-dotnet/README.md

47 lines
1.0 KiB
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-08-01 20:40:13 +00:00
- optionally downloading and caching a version of dotnet by SDK version and adding to PATH
2019-07-17 14:45:43 +00:00
- registering problem matchers for error output
# Usage
See [action.yml](action.yml)
Basic:
```yaml
2019-07-26 01:27:45 +00:00
steps:
2019-07-23 19:45:43 +00:00
- uses: actions/checkout@master
- uses: actions/setup-dotnet@v1
2019-07-17 14:45:43 +00:00
with:
2019-08-01 20:40:13 +00:00
version: '2.2.103' // SDK Version to use.
2019-07-17 14:45:43 +00:00
- run: dotnet build <my project>
```
Matrix Testing:
```yaml
jobs:
build:
2019-08-01 15:05:47 +00:00
runs-on: ubuntu-16.04
2019-07-17 14:45:43 +00:00
strategy:
matrix:
2019-08-01 15:05:47 +00:00
dotnet: [ '2.2.103', '3.5.2', '4.5.1' ]
2019-07-17 14:45:43 +00:00
name: Dotnet ${{ matrix.dotnet }} sample
2019-07-26 01:27:45 +00:00
steps:
2019-07-23 19:45:43 +00:00
- uses: actions/checkout@master
2019-07-17 14:45:43 +00:00
- name: Setup dotnet
uses: actions/setup-dotnet@v1
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)