summaryrefslogtreecommitdiffstats
path: root/src/fluent-bit/.github/workflows/skipped-unit-tests.yaml
blob: ab5adc5fa4eaa170411cc916778a5b37bd04437d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# For skipped checks that are required to merge we trigger a fake job that succeeds.
# 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: Run unit tests
on:
  pull_request:
    paths:
      - '.github/**'
      - 'dockerfiles/**'
      - 'docker_compose/**'
      - 'packaging/**'
      - '.gitignore'
      - 'appveyor.yml'
      - '**.sh'
      - 'examples/**'

jobs:
  run-all-unit-tests:
    runs-on: ubuntu-latest
    name: Unit tests (matrix)
    steps:
      - run: echo "No unit tests required"