Skip to content

Commit

Permalink
feat: Init
Browse files Browse the repository at this point in the history
  • Loading branch information
Yushu2606 committed Jul 20, 2024
0 parents commit 94c8195
Show file tree
Hide file tree
Showing 49 changed files with 2,253 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
28 changes: 28 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net

name: .NET

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/[email protected]
- name: Setup .NET
uses: actions/[email protected]
with:
dotnet-version: 8.0.x
- name: Build
run: dotnet publish -c Release
- name: Upload Artifact
uses: actions/[email protected]
with:
path: src/bin
Loading

0 comments on commit 94c8195

Please sign in to comment.