Skip to content

Commit

Permalink
Merge pull request #60 from sebastienros/sebros/ghactions
Browse files Browse the repository at this point in the history
Add GitHub action for PR checks
  • Loading branch information
rivantsov authored Feb 1, 2024
2 parents 106ffe4 + 2b08bd4 commit 5bdfd5c
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build

on:
push:
branches: [ master ]

pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1

steps:
- name: Checkout source code
uses: actions/checkout@v3

- name: Test
run: dotnet test ./040.Irony.Tests.VsTest.csproj -c release

0 comments on commit 5bdfd5c

Please sign in to comment.