From f021e5e074de7c4b20e9416e88f634bfe7ecf6d7 Mon Sep 17 00:00:00 2001 From: Andy Brett Date: Mon, 22 Mar 2021 09:37:03 -0700 Subject: [PATCH] add --profile to all jobs --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8646c9a5de..d1630d532d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -49,7 +49,7 @@ jobs: bundle exec rake db:schema:load RAILS_ENV=test - name: Run controller tests - run: bundle exec rspec spec/controllers spec/serializers + run: bundle exec rspec --profile -- spec/controllers spec/serializers test-models: runs-on: ubuntu-18.04 @@ -90,7 +90,7 @@ jobs: bundle exec rake db:schema:load RAILS_ENV=test - name: Run tests - run: bundle exec rspec spec/models + run: bundle exec rspec --profile -- spec/models test-admin-features-1: runs-on: ubuntu-18.04