Skip to content

Commit

Permalink
πŸ‘·β€β™‚οΈ GitHub Action - Add build step to pull requests (#49)
Browse files Browse the repository at this point in the history
Create dotnet.yml
  • Loading branch information
SamBWagner authored Oct 7, 2023
1 parent 5d6f88d commit aaa0cd3
Showing 1 changed file with 28 additions and 0 deletions.
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:
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Setup .NET 8.x
uses: actions/setup-dotnet@v3
with:
# Semantic version range syntax or exact version of a dotnet version
dotnet-version: '8.x'
include-prerelease: true

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

0 comments on commit aaa0cd3

Please sign in to comment.