Skip to content

Commit

Permalink
Added an automated tests workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
qkmaxware committed Jul 17, 2024
1 parent d20bec8 commit 397104b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Automated Testing
on:
push:
branches:
- "*"
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ windows-latest, ubuntu-latest, macOS-latest ]
steps:
- name: Checkout Code
uses: actions/checkout@master
- name: Setup Dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x' # SDK Version to use
- name: .Net Core Info
run: dotnet --info
- name: Run Unit Tests
run: dotnet test

0 comments on commit 397104b

Please sign in to comment.