Skip to content

Commit

Permalink
remove pushd and popd
Browse files Browse the repository at this point in the history
Signed-off-by: Dusan Malusev <dusan@dusanmalusev.dev>
  • Loading branch information
CodeLieutenant committed Jun 10, 2024
1 parent a83ec6c commit a93caa8
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,14 @@ jobs:
cmake --preset ${{ matrix.preset }} || exit 1
pushd out/${{ matrix.preset }} || exit 1
cd out/${{ matrix.preset }} || exit 1
ninja install || exit 1
popd || exit 1
cd ../../
PHP_INI=$("php" --ini | grep "php.ini" | awk '{ print $5 }' | xargs -I {} printf '%s/php.ini' {})
cat cassandra.ini >> "$PHP_INI" || exit 1
pushd tests
cd tests
php /bin/composer install
php ./vendor/bin/pest
popd

0 comments on commit a93caa8

Please sign in to comment.