Skip to content

ci: add release workflow #32

ci: add release workflow

ci: add release workflow #32

Workflow file for this run

name: Run Tests
on:
pull_request:
# Sequence of patterns matched against refs/heads
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
global-json-file: global.json
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --configuration Release --no-build --verbosity normal