Skip to content

fix(test): tests fail if dotnet isnt on the path #47

fix(test): tests fail if dotnet isnt on the path

fix(test): tests fail if dotnet isnt on the path #47

Workflow file for this run

# ------------------------------------------------------------------------------
# <auto-generated>
#
# This code was generated.
#
# - To turn off auto-generation set:
#
# [GitHubActions (AutoGenerate = false)]
#
# - To trigger manual generation invoke:
#
# nuke --generate-configuration GitHubActions_default --host GitHubActions
#
# </auto-generated>
# ------------------------------------------------------------------------------
name: default
on:
push:
branches:
- main
jobs:
ubuntu-latest:
name: ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: 'Cache: .nuke/temp, ~/.nuget/packages'
uses: actions/cache@v3
with:
path: |
.nuke/temp
~/.nuget/packages
key: ${{ runner.os }}-${{ hashFiles('global.json', 'src/**/*.csproj') }}
- name: 'Run: Test'
run: ./build.cmd Test
env:
CodecovToken: ${{ secrets.CODECOV_TOKEN }}
PublicNuGetApiKey: ${{ secrets.PUBLIC_NUGET_API_KEY }}
- name: 'Publish: test-results'
uses: actions/upload-artifact@v3
with:
name: test-results
path: artifacts/test-results
macos-latest:
name: macos-latest
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: 'Cache: .nuke/temp, ~/.nuget/packages'
uses: actions/cache@v3
with:
path: |
.nuke/temp
~/.nuget/packages
key: ${{ runner.os }}-${{ hashFiles('global.json', 'src/**/*.csproj') }}
- name: 'Run: Test'
run: ./build.cmd Test
env:
CodecovToken: ${{ secrets.CODECOV_TOKEN }}
PublicNuGetApiKey: ${{ secrets.PUBLIC_NUGET_API_KEY }}
- name: 'Publish: test-results'
uses: actions/upload-artifact@v3
with:
name: test-results
path: artifacts/test-results