From 45920ed724696dc0809728667771bbc34b3d68d1 Mon Sep 17 00:00:00 2001 From: Mark VanderVoord Date: Sat, 16 Jan 2021 21:21:51 -0500 Subject: [PATCH] Need project present before running bundler. --- .github/workflows/main.yml | 8 ++++---- .gitignore | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cbc5045..9908456 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,6 +21,10 @@ jobs: run: | sudo apt-get install --assume-yes --quiet gcc-multilib + # Checks out repository under $GITHUB_WORKSPACE + - name: Checkout Latest Repo + uses: actions/checkout@v2 + # Install Ruby Testing Tools - name: Setup Ruby Testing Tools run: | @@ -29,10 +33,6 @@ jobs: sudo gem install rubocop -v 0.57.2 bundle install - # Checks out repository under $GITHUB_WORKSPACE - - name: Checkout Latest Repo - uses: actions/checkout@v2 - # Run Tests - name: Run All Unit Tests run: | diff --git a/.gitignore b/.gitignore index 14f99d0..57fce96 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ test/system/build test/system/generated *.sublime-project +*.sublime-workspace Gemfile.lock .rake_t_cache .DS_Store