0
1
mirror of https://github.com/actions/checkout synced 2024-06-01 18:38:03 +02:00
checkout/__test__/verify-basic.sh

25 lines
523 B
Bash
Raw Normal View History

#!/bin/sh
if [ ! -f "./basic/basic-file.txt" ]; then
echo "Expected basic file does not exist"
exit 1
fi
if [ "$1" = "--archive" ]; then
# Verify no .git folder
if [ -d "./basic/.git" ]; then
echo "Did not expect ./basic/.git folder to exist"
exit 1
fi
else
# Verify .git folder
if [ ! -d "./basic/.git" ]; then
echo "Expected ./basic/.git folder to exist"
exit 1
fi
# Verify auth token
cd basic
2020-07-14 15:23:30 +02:00
git fetch --no-tags --depth=1 origin +refs/heads/main:refs/remotes/origin/main
fi