Skip to content

Merge pull request #1910 from ytqsl/tasks/EMBCEDDMOD-4883 #1

Merge pull request #1910 from ytqsl/tasks/EMBCEDDMOD-4883

Merge pull request #1910 from ytqsl/tasks/EMBCEDDMOD-4883 #1

Workflow file for this run

name: ci-automation
on:
pull_request:
types: [opened, reopened, edited, synchronize]
paths:
- "automated-tests/src/**"
- ".github/workflows/ci-automation.yml"
# temporarily also build after merge until the CD and run workflow is created
push:
branches:
- master
paths:
- "automated-tests/src/**"
- ".github/workflows/ci-automation.yml"
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: "./automated-tests/src/EMBC.Tests.Automation"
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
# - name: Test
# run: dotnet test --no-build --verbosity normal