Skip to content

Working on signing and testing #1

Working on signing and testing

Working on signing and testing #1

Workflow file for this run

name: Run tests
# Trigger test workflow whenever:
# 1. A pull request is updated (e.g with new commits)
# 2. Commits are pushed directly to the stage or master branch
on:
push:
branches: ["stage*", "master*", "pipeline"]
pull_request:
branches: ["stage*", "master*"]
types: [
# Default triggers
opened,
synchronize,
reopened,
# Additional triggers
labeled,
unlabeled
]
workflow_dispatch:
inputs:
test-server-rc:
type: boolean
default: false
required: true
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- name: Build
uses: ./.github/actions/build
#- name: Upload to JFrog
# if: ${{ !cancelled() && inputs.upload-artifacts == true }}
# uses: ./.github/actions/upload-to-jfrog
- name: Test
uses: ./.github/actions/test

Check failure on line 46 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

You have an error in your yaml syntax on line 46
with:
use-server-rc: ${{ contains(github.event.pull_request.labels.*.name, 'new-server-features') }}