mirror of
https://github.com/actions/checkout.git
synced 2025-03-31 05:20:06 +02:00
21 lines
354 B
YAML
21 lines
354 B
YAML
name: Build and Test
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
- releases/*
|
|
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
matrix:
|
|
runs-on: [ubuntu-latest]
|
|
runs-on: ${{ matrix.runs-on }}
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2-beta
|
|
with:
|
|
ref: refs/pull/${{ github.event.number }}/head
|