Skip to content

Create github-actions-release.yml #14

Create github-actions-release.yml

Create github-actions-release.yml #14

name: Continuous Integration
on:
push:
branches: [ "releases/*" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET 6.x
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.x'
- name: Build
run: dotnet build --property:Configuration=Debug "PosInformatique.FluentValidation.Json.sln"
- name: Test with the dotnet CLI
run: dotnet test --property:Configuration=Debug "PosInformatique.FluentValidation.Json.sln"