checkout/.github/workflows/test.yml

32 lines
725 B
YAML
Raw Permalink Normal View History

name: Build and Test
2019-12-11 10:04:38 +08:00
on: push
jobs:
2019-12-11 10:01:08 +08:00
test-archive:
runs-on: windows-latest
steps:
# Clone this repo
- name: Checkout
shell: bash
2019-12-10 05:54:42 +08: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
2019-12-11 10:09:20 +08:00
- shell: cmd
run: |
echo echo hello > git.cmd
echo ::add-path::%CD%
2019-12-10 05:54:42 +08:00
- name: Basic checkout
uses: ./
with:
ref: test-data/v2/basic
path: basic
- name: Verify basic
2019-12-11 10:01:08 +08:00
shell: bash
2019-12-10 05:54:42 +08:00
run: __test__/verify-basic.sh container
2019-12-11 10:03:55 +08:00