Set up your GitHub Actions workflow with a specific version of the .NET core sdk
Go to file
Danny McCormick 32271541ae
Fix fallback urls (#6)
2019-07-23 11:03:29 -04:00
.github Update workflow.yml (#5) 2019-07-16 14:32:35 -04:00
__tests__ Longer timeout 2019-06-24 08:43:12 -04:00
docs Initial commit 2019-06-19 16:22:22 -04:00
externals Add installer (#1) 2019-06-21 08:21:08 -04:00
lib Fix fallback urls (#6) 2019-07-23 11:03:29 -04:00
node_modules Update toolkit version (#3) 2019-06-24 15:15:54 -04:00
src Fix fallback urls (#6) 2019-07-23 11:03:29 -04:00
toolkit Update toolkit version (#3) 2019-06-24 15:15:54 -04:00
.gitignore Initial commit 2019-06-19 16:22:22 -04:00
.prettierrc.json Initial commit 2019-06-19 16:22:22 -04:00
LICENSE Initial commit 2019-06-19 16:22:22 -04:00
README.md Update README.md 2019-07-17 10:45:43 -04:00
action.yml Update action.yml 2019-07-09 12:43:19 -04:00
jest.config.js Initial commit 2019-06-19 16:22:22 -04:00
package-lock.json Update toolkit version (#3) 2019-06-24 15:15:54 -04:00
package.json Fix husky 2019-07-12 11:00:38 -04:00
tsconfig.json Initial commit 2019-06-19 16:22:22 -04:00

setup-dotnet

This action sets up a dotnet environment for use in actions by:

  • optionally downloading and caching a version of dotnet by version and adding to PATH
  • registering problem matchers for error output

Usage

See action.yml

Basic:

actions:
- uses: actions/setup-dotnet@latest
  with:
    version: 2.2.103 // Version to use.
- run: dotnet build <my project>

Matrix Testing:

jobs:
  build:
    strategy:
      matrix:
        dotnet: [ 2.2.103, 3.5.2, 4.5.1 ]
    name: Dotnet ${{ matrix.dotnet }} sample
    actions:
      - name: Setup dotnet
        uses: actions/setup-dotnet@latest
        with:
          version: ${{ matrix.dotnet }}
      - run: dotnet build <my project>

License

The scripts and documentation in this project are released under the MIT License

Contributions

Contributions are welcome! See Contributor's Guide