2019-12-03 16:28:59 +01:00
|
|
|
name: Build and Test
|
|
|
|
|
2019-12-11 03:04:38 +01:00
|
|
|
on: push
|
2019-10-25 16:52:59 +02:00
|
|
|
|
|
|
|
jobs:
|
2019-12-11 03:01:08 +01:00
|
|
|
test-archive:
|
|
|
|
runs-on: windows-latest
|
2019-10-25 16:52:59 +02:00
|
|
|
steps:
|
2019-12-03 16:28:59 +01:00
|
|
|
# Clone this repo
|
|
|
|
- name: Checkout
|
|
|
|
shell: bash
|
2019-12-09 22:54:42 +01: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 03:01:08 +01:00
|
|
|
shell: bash
|
2019-12-09 22:54:42 +01:00
|
|
|
run: __test__/verify-basic.sh container
|
2019-12-11 03:03:55 +01:00
|
|
|
|