From 3fd70d1b94a689e825bcc25e04d370efdcae9887 Mon Sep 17 00:00:00 2001 From: Claudio Bley Date: Fri, 29 Apr 2022 08:18:16 +0200 Subject: [PATCH] REMOVE check lstat --- .github/workflows/ruby.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index c59c214a..3addf55c 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -34,6 +34,9 @@ jobs: with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically + - run: | + ruby -r pp -e "f = File.join('spec/fixtures', 'symlinks', 'Supportlink', File::SEPARATOR) + pp File.lstat(f)" - name: Run tests run: bundle exec rake - name: Run checks