elsa-core/.github/workflows/ci.yml
2022-11-09 14:01:58 +01:00

19 lines
395 B
YAML

name: Build & test Elsa 3 packages
on:
push:
branches:
- v3
pull_request:
branches:
- v3
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test --configuration Release --no-build