Skip to content

Preview 7 Bump

Preview 7 Bump #13

Workflow file for this run

name: Test 🛠️
on:
push:
branches:
- main
paths-ignore:
- README.md
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Test
run: dotnet test