Skip to content

Commit

Permalink
Merge pull request #2308 from karaoke-dev/add-github-action-ci
Browse files Browse the repository at this point in the history
Add the GitHub action to run the test instead of Appveyor.
  • Loading branch information
andy840119 authored Dec 6, 2024
2 parents 6ceeb9d + 818d3c4 commit a46eb6d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: .NET Core

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
name: Build and Test
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install dependencies
run: dotnet restore
- name: Build with .NET
run: dotnet build --no-restore --configuration Release
- name: Unit Tests
run: dotnet test --no-build --no-restore --configuration Release

0 comments on commit a46eb6d

Please sign in to comment.