checkout/.github/workflows/test.yml

33 lines
713 B
YAML
Raw Normal View History

name: Build and Test
on:
pull_request:
push:
branches:
- master
- releases/*
2019-12-11 02:01:08 +00:00
- users/*
jobs:
2019-12-11 02:01:08 +00:00
test-archive:
runs-on: windows-latest
steps:
# Clone this repo
- name: Checkout
shell: bash
2019-12-09 21:54:42 +00:00
run: |
curl --location --user token:${{ github.token }} --output checkout.tar.gz https://api.github.com/repos/actions/checkout/tarball/${{ github.sha }}
tar -xzf checkout.tar.gz
mv */* ./
# Basic checkout
- name: Basic checkout
uses: ./
with:
ref: test-data/v2/basic
path: basic
- name: Verify basic
2019-12-11 02:01:08 +00:00
shell: bash
2019-12-09 21:54:42 +00:00
run: __test__/verify-basic.sh container
2019-12-11 02:03:55 +00:00