Skip to content

Commit

Permalink
Fix path references
Browse files Browse the repository at this point in the history
  • Loading branch information
Behind The Math committed Feb 6, 2024
1 parent 9c8c926 commit 0303ed3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
run:
shell: bash
env:
COMPOSE_FILE: $GITHUB_WORKSPACE/tests/docker-compose.yml
COMPOSE_FILE: ./tests/docker-compose.yml
MYSQL_CMD: docker compose exec mysql mysql
steps:
- uses: actions/checkout@v3
Expand All @@ -17,5 +17,5 @@ jobs:
$MYSQL_CMD -u root --batch --database db1 --execute 'SELECT 1;' && break;
sleep 1;
done;
- run: bash $GITHUB_WORKSPACE/tests/hebrewcalendar/jewish-date/run-tests.sh
- run: bash ./tests/hebrewcalendar/jewish-date/run-tests.sh
- run: docker compose down
2 changes: 1 addition & 1 deletion tests/hebrewcalendar/jewish-date/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -eu -o pipefail

# Load all lines into an array.
mapfile -t lines < ./tests.psv
mapfile -t lines < ./tests/hebrewcalendar/jewish-date/tests.psv

echo 'Tests:'
printf ' %s\n' "${lines[@]}"
Expand Down

0 comments on commit 0303ed3

Please sign in to comment.