Skip to content

Commit

Permalink
Merge pull request #168 from BenjaminMichaelis/v8.0
Browse files Browse the repository at this point in the history
Add windows and linux github v8.0 build files
  • Loading branch information
BenjaminMichaelis authored Jun 1, 2021
2 parents 5ad9364 + 6cf9e52 commit f80be95
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/Branch v8.0 - Linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Branch v8.0 - Linux - EssentialCSharp

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

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: v8.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
29 changes: 29 additions & 0 deletions .github/workflows/Branch v8.0 - Windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Branch v8.0 - Windows - EssentialCSharp

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

jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
ref: v8.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

0 comments on commit f80be95

Please sign in to comment.