Skip to content

Add crud for election rounds #1510

Add crud for election rounds

Add crud for election rounds #1510

Workflow file for this run

name: .NET Core
on:
push:
paths:
- api/**
- .github/workflows/**
branches:
- main
pull_request:
branches:
- main
paths:
- api/**
- .github/workflows/**
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Build API
run: dotnet build ./api/Vote.Monitor.sln --configuration Release
- name: Test API
run: dotnet test ./api/Vote.Monitor.sln --configuration Release
- name: Build Hangfire
run: dotnet build ./api/Vote.Monitor.Hangfire.sln --configuration Release
- name: Test Hangfire
run: dotnet test ./api/Vote.Monitor.Hangfire.sln --configuration Release