You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.5 KiB
48 lines
1.5 KiB
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2.3.3
|
|
|
|
- name: Install .NET
|
|
uses: actions/setup-dotnet@v1.7.2
|
|
with:
|
|
# Fixed version, workaround for https://github.com/dotnet/core/issues/7176
|
|
dotnet-version: 6.0.100
|
|
|
|
- name: Build & test
|
|
# Tests need access to secrets, so we can't run them against PRs because of limited trust
|
|
if: ${{ github.event_name != 'pull_request' }}
|
|
run: dotnet test --configuration Release --logger GitHubActions
|
|
env:
|
|
DISCORD_TOKEN: ${{ secrets.DISCORD_TOKEN }}
|
|
DISCORD_TOKEN_BOT: true
|
|
|
|
- name: Upload coverage
|
|
uses: codecov/codecov-action@v1.0.5
|
|
with:
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
|
|
- name: Build & publish (CLI)
|
|
run: dotnet publish DiscordChatExporter.Cli/ -o DiscordChatExporter.Cli/bin/Publish/ --configuration Release
|
|
|
|
- name: Build & publish (GUI)
|
|
run: dotnet publish DiscordChatExporter.Gui/ -o DiscordChatExporter.Gui/bin/Publish/ --configuration Release
|
|
|
|
- name: Upload build artifacts (CLI)
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: DiscordChatExporter.CLI
|
|
path: DiscordChatExporter.Cli/bin/Publish/
|
|
|
|
- name: Upload build artifact (GUI)
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: DiscordChatExporter
|
|
path: DiscordChatExporter.Gui/bin/Publish/ |