Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add windows v9.0 github build #167

Merged
merged 3 commits into from
Jun 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Linux - Branch v9.0 - EssentialCSharp
name: Branch v9.0 - Linux - EssentialCSharp

on:
push:
Expand Down
29 changes: 29 additions & 0 deletions .github/workflows/Branch v9.0 - Windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Branch v9.0 - Windows - EssentialCSharp

on:
push:
branches: [ v9.0 ]
pull_request:
branches: [ v9.0 ]
schedule:
- cron: 0 6 * * 1

jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
ref: v9.0
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.x
- name: Get Directory
run: pwd
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal