Version 1.4.1 #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: master_Integration | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
Merge_master_Integration_Tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 6.0.x | |
- name: Config local repo | |
run: | | |
git config --global user.email "gitHubAction@github.com" | |
git config --global user.name "GithubAction" | |
- name: Merge master locally | |
run: git merge origin/master | |
- name: Build | |
run: dotnet build -c Debug | |
- name: Test | |
run: dotnet test -c Debug |