Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasluckie committed Jan 16, 2024
0 parents commit 8903904
Show file tree
Hide file tree
Showing 129 changed files with 12,932 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
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build Status

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

jobs:
build:

runs-on: windows-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1

- name: Install dependencies
run: dotnet restore ./streamdeck-gpu/streamdeck-gpu.sln

- name: Build
run: dotnet build ./streamdeck-gpu/streamdeck-gpu.sln --configuration Release --no-restore
Loading

0 comments on commit 8903904

Please sign in to comment.