Skip to content

Adding Rider files

Adding Rider files #46

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: windows-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Checkout Source Code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup dotnet 6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.100'
- name: Setup Required Build Dependencies
run: pwsh .\setup.ps1
- name: Build and Test
shell: pwsh
run: |
invoke-psake ci -properties ${'version':'${{ steps.gitversion.outputs.semVer }}'}
- name: Upload Website Artifact
uses: actions/upload-artifact@v1
with:
name: website
path: publish
- name: Upload Test Result Artifact
uses: actions/upload-artifact@v1
with:
name: test-results
path: TestResults