Skip to content

Commit

Permalink
Merge pull request #6 from k-taro56/feature/add-build-check
Browse files Browse the repository at this point in the history
add GitHub Workflows: build check
  • Loading branch information
k-taro56 authored Oct 22, 2023
2 parents 179382a + 23f9180 commit 4a64321
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: .NET Build

on:
push:
pull_request:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x

- name: Restore dependencies
run: dotnet restore

- name: Build
run: dotnet build --no-restore

0 comments on commit 4a64321

Please sign in to comment.