forked from Subterfuge-Revived/Remake-Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix testing pipeline and dockerfiles
- Loading branch information
Showing
18 changed files
with
1,453 additions
and
1,538 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 |
---|---|---|
@@ -1,43 +1,40 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
|
||
name: Test Dll | ||
|
||
# Controls when the action will run. Triggers the workflow on push or pull request | ||
# events but only for the master branch | ||
on: | ||
pull_request: | ||
branches: [ master ] | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
# This workflow contains a single job called "build" | ||
unitTest: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-18.04 | ||
# The container image to pull | ||
container: mcr.microsoft.com/dotnet/sdk:5.0 | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
# Build proto files | ||
- name: Generate Proto | ||
run: dotnet build "Server/ProtoFiles/ProtoFiles.csproj" | ||
# Build the DLL | ||
- name: Build DLL | ||
run: dotnet build "Core/SubterfugeCore/SubterfugeCore.csproj" | ||
- name: Run tests | ||
run: dotnet test "Core/SubterfugeCoreTest/SubterfugeCoreTest.csproj" | ||
# A step to build docfx documents using a differnt container with docfx installed | ||
gen-docs: | ||
runs-on: ubuntu-18.04 | ||
container: erothejoker/docker-docfx:latest | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
# Run the docfx generation command. | ||
- name: Generate docs | ||
run: docfx Core/SubterfugeCore/docfx.json | ||
# This is a basic workflow to help you get started with Actions | ||
|
||
name: Test Dll | ||
|
||
# Controls when the action will run. Triggers the workflow on push or pull request | ||
# events but only for the master branch | ||
on: | ||
pull_request: | ||
branches: [ master ] | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
# This workflow contains a single job called "build" | ||
unitTest: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-18.04 | ||
# The container image to pull | ||
container: mcr.microsoft.com/dotnet/sdk:5.0 | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
# Build the DLL | ||
- name: Build DLL | ||
run: dotnet build "Core/SubterfugeCore/SubterfugeCore.csproj" | ||
- name: Run tests | ||
run: dotnet test "Core/SubterfugeCoreTest/SubterfugeCoreTest.csproj" | ||
# A step to build docfx documents using a differnt container with docfx installed | ||
gen-docs: | ||
runs-on: ubuntu-18.04 | ||
container: erothejoker/docker-docfx:latest | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
# Run the docfx generation command. | ||
- name: Generate docs | ||
run: docfx Core/SubterfugeCore/docfx.json |
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.