Skip to content

Bump gittools/actions from 0 to 1 #42

Bump gittools/actions from 0 to 1

Bump gittools/actions from 0 to 1 #42

Workflow file for this run

name: CI
on:
push:
branches:
- feature/**
pull_request:
branches:
- develop
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: dotnet build -c Release
- name: Unit Test
run: dotnet test -c Release --no-build