mirror of
https://github.com/ditkrg/asp.netcore-authentication.git
synced 2026-01-22 23:07:01 +00:00
34 lines
505 B
YAML
34 lines
505 B
YAML
name: Run Tests
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- main
|
|
|
|
paths-ignore:
|
|
- "**.md"
|
|
|
|
- ".github/**"
|
|
- "!.github/workflows/tests-base.yaml"
|
|
|
|
workflow_call:
|
|
|
|
jobs:
|
|
run-tests:
|
|
name: Run Tests
|
|
timeout-minutes: 10
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
ASPNETCORE_ENVIRONMENT: Testing
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-dotnet@v3
|
|
with:
|
|
dotnet-version: "7.0.x"
|
|
|
|
- name: Run tests
|
|
run: dotnet test
|