-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update from cryptogarageinc v0.2.5 Co-authored-by: k-matsuzawa <[email protected]>
- Loading branch information
1 parent
528cc14
commit 50f5565
Showing
27 changed files
with
440 additions
and
162 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: pre-merge check | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
- features/sprint* | ||
pull_request: | ||
branches: | ||
- master | ||
- develop | ||
- features/sprint* | ||
|
||
jobs: | ||
test-dotnet5: | ||
name: dotnet 5.0 | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [macos-10.15, macos-11.0, windows-2019, ubuntu-20.04, ubuntu-18.04] | ||
|
||
steps: | ||
- name: setup dotnet | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: 5.0.x | ||
- uses: actions/checkout@v2 | ||
- name: build and test | ||
if: runner.os != 'Windows' | ||
run: | | ||
./tools/build.sh | ||
./tools/test.sh | ||
- name: build and test on win | ||
if: runner.os == 'Windows' | ||
run: | | ||
./tools/build.bat | ||
./tools/test.bat | ||
test-dotnet3: | ||
name: dotnet 3.1 | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [macos-10.15, windows-2019, ubuntu-20.04, ubuntu-18.04] | ||
|
||
steps: | ||
- name: setup dotnet | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: 3.1.x | ||
- uses: actions/checkout@v2 | ||
- name: build and test | ||
if: runner.os != 'Windows' | ||
run: | | ||
./tools/build_core3.sh | ||
./tools/test_core3.sh | ||
- name: build and test on win | ||
if: runner.os == 'Windows' | ||
run: | | ||
./tools/build_core3.bat | ||
./tools/test_core3.bat |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
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
2 changes: 1 addition & 1 deletion
2
dotnet_project/CfdCsharpProject.xTests/CfdCsharpProject.xTests.csproj
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
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
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
Oops, something went wrong.