Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

Feature/add pos function #40

Feature/add pos function

Feature/add pos function #40

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- master
- release/*
pull_request:
branches:
- master
- release/*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v3
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal