update tinyembree #275
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [push] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ macos-latest, ubuntu-latest, windows-latest ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET Core SDK | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '7.0.x' | |
- name: Build | |
working-directory: ${{github.workspace}} | |
run: dotnet build | |
- name: Test | |
working-directory: ${{github.workspace}} | |
run: dotnet test -l "console;verbosity=normal" --no-build --blame-hang | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET Core SDK | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '7.0.x' | |
- name: Run validation | |
working-directory: ${{github.workspace}} | |
run: dotnet run -c Release --project SeeSharp.Validation | |
pack: | |
runs-on: ubuntu-latest | |
needs: [test, validate] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET Core SDK | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '7.0.x' | |
- name: Pack | |
run: dotnet pack -c Release | |
- name: Upload .nupkg | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ${{github.workspace}}/SeeSharp/bin/**/*.nupkg | |
- name: Publish on version change | |
uses: alirezanet/[email protected] | |
with: | |
PROJECT_FILE_PATH: SeeSharp/SeeSharp.csproj | |
NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
TAG_COMMIT: false |