26 lines
633 B
YAML
26 lines
633 B
YAML
|
name: testing
|
||
|
on:
|
||
|
- push
|
||
|
- pull_request
|
||
|
|
||
|
env:
|
||
|
ASPNETCORE_ENVIRONMENT: Production
|
||
|
|
||
|
jobs:
|
||
|
testing:
|
||
|
name: check and test
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
with:
|
||
|
fetch-depth: 0 # all history for all branches and tags
|
||
|
- name: Setup .NET Core
|
||
|
uses: actions/setup-dotnet@v4
|
||
|
with:
|
||
|
dotnet-version: 8.0.x
|
||
|
- name: dotnet restore
|
||
|
run: dotnet restore
|
||
|
- name: dotnet build
|
||
|
run: dotnet build --no-restore -c Release
|
||
|
- name: dotnet test
|
||
|
run: dotnet test --no-build --no-restore -c Release --verbosity normal
|