Skip to content

Commit

Permalink
Merge branch 'main' into change_accessibility
Browse files Browse the repository at this point in the history
  • Loading branch information
nenoNaninu authored Aug 8, 2023
2 parents 699bef8 + 5c31b3a commit 6a82ea9
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: build

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

env:
DOTNET_VERSION: "7.0.x"
DOTNET_NOLOGO: true

jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

- name: Restore dependencies
run: dotnet restore

- name: Build TypedSignalR.Client.DevTools.csproj
run: dotnet build ./src/TypedSignalR.Client.DevTools/TypedSignalR.Client.DevTools.csproj --no-restore

0 comments on commit 6a82ea9

Please sign in to comment.