Skip to content

Commit 5bdfd5c

Browse files
authored
Merge pull request #60 from sebastienros/sebros/ghactions
Add GitHub action for PR checks
2 parents 106ffe4 + 2b08bd4 commit 5bdfd5c

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/build.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
7+
pull_request:
8+
branches: [ master ]
9+
10+
jobs:
11+
build:
12+
13+
runs-on: ubuntu-latest
14+
env:
15+
DOTNET_NOLOGO: true
16+
DOTNET_CLI_TELEMETRY_OPTOUT: 1
17+
18+
steps:
19+
- name: Checkout source code
20+
uses: actions/checkout@v3
21+
22+
- name: Test
23+
run: dotnet test ./040.Irony.Tests.VsTest.csproj -c release

0 commit comments

Comments
 (0)