Skip to content

Merge pull request #86 from nikeee/dependabot/github_actions/actions/… #23

Merge pull request #86 from nikeee/dependabot/github_actions/actions/…

Merge pull request #86 from nikeee/dependabot/github_actions/actions/… #23

Workflow file for this run

name: CI
on:
push:
branches:
- '*'
pull_request:
branches:
- master
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore