Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Update actions/setup-dotnet action to v3 - autoclosed #172

Update actions/setup-dotnet action to v3 - autoclosed

Update actions/setup-dotnet action to v3 - autoclosed #172

Workflow file for this run

name: BUILD
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Pull zeebe
run: docker pull camunda/zeebe:1.1.0
- name: Checkout
uses: actions/checkout@v2
- name: Setup
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test --configuration Release --no-build