Skip to content

Corrected break detection in while/until block. #85

Corrected break detection in while/until block.

Corrected break detection in while/until block. #85

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
inputs:
commit_sha:
description: "Run the workflow on another than the last commit"
required: false
default: ""
type: string
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
ref: ${{ github.event.inputs.commit_sha }}
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Run Unit-Tests
run: |
dotnet test
- name: Test Deployment
run: |
dotnet pack
dependabot-automerge:
runs-on: ubuntu-latest
needs: [build]
permissions: write-all
if: github.actor == 'dependabot[bot]'
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1.1.1
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}