Skip to content

set version to 1.0.0 #7

set version to 1.0.0

set version to 1.0.0 #7

Workflow file for this run

name: .NET
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
global-json-file: global.json
- name: Build
run: dotnet build --verbosity quiet
- name: Test
run: dotnet test --no-build --verbosity minimal