Skip to content

PSA-34901 Pin third party actions to commit SHA #102

PSA-34901 Pin third party actions to commit SHA

PSA-34901 Pin third party actions to commit SHA #102

Workflow file for this run

name: Run Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2
- name: Setup .NET Core
uses: actions/setup-dotnet@871f041373faaad213a635d9afb62905ec029bbb # v1
with:
dotnet-version: 8.0.*
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --configuration Release --no-build