Skip to content

Commit

Permalink
chore: setup Github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MangelMaxime committed Jun 3, 2024
1 parent 0e67f1a commit df88490
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: build

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
test:
runs-on: ubuntu-latest
name: Run tests suite

steps:
- uses: actions/checkout@v2

- name: Setup .NET
uses: actions/setup-dotnet@v1

- name: Tests
run: ./build.sh test
6 changes: 6 additions & 0 deletions global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"sdk": {
"version": "8.0.204",
"rollForward": "latestMinor"
}
}

0 comments on commit df88490

Please sign in to comment.