Skip to content

GitHub workflow

GitHub workflow #2

Workflow file for this run

name: Run Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: "7.0.x"
- name: Restore dependencies
run: dotnet restore NepDate.sln
- name: Build
run: dotnet build NepDate.sln --no-restore
- name: Test
run: dotnet test NepDate.sln --no-build --verbosity normal