Skip to content

Commit

Permalink
chore: Create workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MrDave1999 committed Dec 2, 2023
1 parent dcb539a commit 8321217
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: YeSQL.Net

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
dotnet-version: ['8.x']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Test
run: dotnet test ./tests/YeSql.Net.Tests.csproj

0 comments on commit 8321217

Please sign in to comment.