mirror of
https://github.com/actions/checkout.git
synced 2025-03-31 05:20:06 +02:00
17 lines
268 B
YAML
17 lines
268 B
YAML
name: Build and Test
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
types: [opened, synchronize, closed]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- env:
|
|
GITHUB_JSON: ${{ toJson(github) }}
|
|
run: |
|
|
echo "$GITHUB_JSON"
|