Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

doc - Don't reiterate pull request template~ #14

doc - Don't reiterate pull request template~

doc - Don't reiterate pull request template~ #14

Workflow file for this run

name: Build Project (Windows)
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Solution Compilation
run: dotnet build --configuration Debug
- name: Testing
run: dotnet test --configuration Debug
- uses: actions/upload-artifact@v3
if: success() || failure()
with:
name: ag-build
path: "Addresstigator/bin/Debug/"
notify:
runs-on: ubuntu-latest
needs:
- build
if: ${{ always() }}
steps:
- name: Notify
uses: nobrayner/discord-webhook@v1
with:
github-token: ${{ secrets.G_TOKEN }}
discord-webhook: ${{ secrets.DISCORD_WEBHOOK }}