Skip to content

Commit 54de9d4

Browse files
authored
add github action for CI (#98)
* add ci action
1 parent c919505 commit 54de9d4

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/ci.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
on: [pull_request]
3+
jobs:
4+
build:
5+
strategy:
6+
matrix:
7+
os: [ubuntu-latest, windows-latest, macos-latest]
8+
runs-on: ${{ matrix.os }}
9+
steps:
10+
- uses: actions/checkout@v2
11+
with:
12+
fetch-depth: 0
13+
- name: Setup .NET 3
14+
uses: actions/setup-dotnet@v1
15+
with:
16+
dotnet-version: '3.1.x'
17+
- run: dotnet test src/FluentAssertions.Analyzers.sln --configuration Release --filter 'TestCategory=Completed'

0 commit comments

Comments
 (0)