Skip to content

chore: Update versionize configuration #1008

chore: Update versionize configuration

chore: Update versionize configuration #1008

Workflow file for this run

name: Build and test
on:
push:
branches:
- 'push-action/**'
pull_request:
jobs:
build_and_test:
name: Build and test
runs-on: ubuntu-latest
steps:
- name : Checkout Repo
uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.101
- name: Install dependencies
run: dotnet restore Firebend.AutoCrud.sln
- name: Run dotnet format
run: dotnet format Firebend.AutoCrud.sln --verify-no-changes --no-restore
- name: Build
run: dotnet build Firebend.AutoCrud.sln --configuration Release --no-restore
- name: Test
run: dotnet test Firebend.AutoCrud.sln --logger GitHubActions --no-restore --verbosity normal --filter FullyQualifiedName\!~IntegrationTests