1
0
Fork 0
mirror of https://github.com/actions/checkout.git synced 2025-03-31 05:20:06 +02:00
checkout/.github/workflows/test.yml
eric sciple 2ad8d40bde .
2019-12-04 11:03:13 -05:00

25 lines
453 B
YAML

name: Build and Test
on:
pull_request:
push:
branches:
- master
- releases/*
- users/ericsciple/m162testing
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2-beta
# Basic checkout
- name: Basic checkout
id: foo
uses: ./
with:
ref: test-data/v2/basic
path: basic
- run: echo foo.outputs.bar is '${{ steps.foo.outputs.bar }}'