Skip to content

Commit 01f3a2c

Browse files
committed
ci: add initial GitHub Actions CI pipeline
1 parent c6e9f3a commit 01f3a2c

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Playtesters.API.CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
env:
11+
DOTNET_VERSION: '8.x'
12+
13+
jobs:
14+
testing:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v6
18+
- name: Setup .NET ${{ env.DOTNET_VERSION }}
19+
uses: actions/setup-dotnet@v5
20+
with:
21+
dotnet-version: ${{ env.DOTNET_VERSION }}
22+
- name: Execute tests
23+
run: dotnet test ./tests/Playtesters.API.Tests/Playtesters.API.Tests.csproj -c Release

0 commit comments

Comments
 (0)