File: basic_test_skipped.yaml

package info (click to toggle)
pyocd 0.37.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 355,132 kB
  • sloc: xml: 3,682,260; python: 61,563; ansic: 112; makefile: 87; asm: 25; sh: 14
file content (35 lines) | stat: -rw-r--r-- 1,066 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Copyright (c) 2021-2022 Chris Reed

# pyocd workflow to fill in for the skipped 'basic test' workflow for docs updates. Without this,
# the required 'basic test' workflow will not have run and therefore docs PRs won't be mergeable.
#
# See this documentation for more about the need for this workaround: 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

name: basic test

on:
  pull_request:
    paths:
      - 'docs/**'

jobs:
  build:
    # Note: this must have the same runs-on and strategy as the actual 'basic test' workflow, or
    # the workflow names will not match.
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os:
        - ubuntu-latest
        - macos-latest
        - windows-latest
        python-version:
        - "3.8"
        - "3.9"
        - "3.10"
        - "3.11"
        - "3.12"
        - "3.13"

    steps:
      - run: 'echo "Skipped due to path filter."'