test.yml 622 B

1234567891011121314151617181920212223242526
  1. name: Build and Test
  2. on: push
  3. jobs:
  4. test-archive:
  5. runs-on: windows-latest
  6. steps:
  7. # Clone this repo
  8. - name: Checkout
  9. shell: bash
  10. run: |
  11. curl --location --user token:${{ github.token }} --output checkout.tar.gz https://api.github.com/repos/actions/checkout/tarball/${{ github.sha }}
  12. tar -xzf checkout.tar.gz
  13. mv */* ./
  14. # Basic checkout
  15. - name: Basic checkout
  16. uses: ./
  17. with:
  18. ref: test-data/v2/basic
  19. path: basic
  20. - name: Verify basic
  21. shell: bash
  22. run: __test__/verify-basic.sh container