Skip to content

Bump version

Bump version #65

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
os: ['windows-latest', 'ubuntu-latest']
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup dotnet
uses: actions/setup-dotnet@v2
with:
dotnet-version: |
9.0.x
7.0.100
6.0.x
- name: Build and Test
run: ./build.ps1
shell: pwsh
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1