Skip to content

chore: print hello on workflows #135

chore: print hello on workflows

chore: print hello on workflows #135

name: "Test Integration"
on:
push:
paths-ignore:
- "**.md"
pull_request:
paths-ignore:
- "**.md"
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test workflow integration
strategy:
matrix:
runs-on: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
uses: ./.github/workflows/integration-test-workflow.yml
with:
working-directory: integration-test
main-branch-name: ${{ github.event_name == 'pull_request' && github.base_ref || github.ref_name }}
runs-on: ${{ matrix.runs-on }}
print-hello:
name: Print Hello
runs-on: ubuntu-latest
steps:
- name: Print Hello
run: echo "Hello, world!"