summaryrefslogtreecommitdiffstats
path: root/pkg/runner/testdata/shells/sh/push.yml
blob: 0914ca2ff281013bfc19f9a58280fff0082f7c93 (plain)
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
36
37
on: push
env:
  MY_SHELL: sh
jobs:
  check:
    runs-on: ubuntu-latest
    steps:
      - shell: ${{ env.MY_SHELL }}
        run: |
          if [ -z ${BASH+x} ]; then
            echo "I'm sh!"
          else
            exit 1
          fi
  check-container:
    runs-on: ubuntu-latest
    container: alpine:latest
    steps:
      - shell: ${{ env.MY_SHELL }}
        run: |
          if [ -z ${BASH+x} ]; then
            echo "I'm sh!"
          else
            exit 1
          fi
  check-job-default:
    runs-on: ubuntu-latest
    defaults:
      run:
        shell: ${{ env.MY_SHELL }}
    steps:
      - run: |
          if [ -z ${BASH+x} ]; then
            echo "I'm sh!"
          else
            exit 1
          fi