Skip to content

Merge pull request #69 from lifebeyondfife/BoundsBugfix #76

Merge pull request #69 from lifebeyondfife/BoundsBugfix

Merge pull request #69 from lifebeyondfife/BoundsBugfix #76

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- name: Setup .Net Core
uses: actions/setup-dotnet@v2
with:
dotnet-version: '6.0.x'
- name: Install Dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Run Tests
run: dotnet test --no-restore