alternate workflow for "linux-ci" to accommodate documentation-only PRs (#3128)

This commit is contained in:
Timothy Mothra 2022-04-01 10:31:26 -07:00 committed by GitHub
parent 7ed97be908
commit bdbbda8371
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 0 deletions

25
.github/workflows/linux-ci-md.yml vendored Normal file
View File

@ -0,0 +1,25 @@
# Syntax: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
# See also: https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks
# Description: This workflow exists to unblock documentation-only PRs.
# IMPORTANT: This workflow MUST use the same 'name' as the non -md workflow.
name: Linux
on:
pull_request:
branches: [ main ]
paths:
- '**.md'
jobs:
build-test:
runs-on: ubuntu-latest
strategy:
matrix:
version: [netcoreapp3.1,net5.0,net6.0]
steps:
- run: 'echo "No build required"'