From e60e8324f1827c03cead3a7735c1be588f2374ab Mon Sep 17 00:00:00 2001 From: Alex Basson Date: Fri, 10 Sep 2021 11:08:27 -0400 Subject: [PATCH] Deliberately introduce failing test to verify automatic deploy --- .github/workflows/build-and-test.yml | 2 +- spec/models/attempt_spec.rb | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 48e84f82..180b2d9e 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -1,4 +1,4 @@ -name: Ruby +name: Build and Test on: push: diff --git a/spec/models/attempt_spec.rb b/spec/models/attempt_spec.rb index f0551fce..a317f920 100644 --- a/spec/models/attempt_spec.rb +++ b/spec/models/attempt_spec.rb @@ -2,6 +2,12 @@ require 'rails_helper' RSpec.describe Attempt, type: :model do + describe 'a failing test' do + it 'fails' do + expect(true).to be_falsey + end + end + let!(:school) { School.create!(name: 'School') } let!(:recipient) { school.recipients.create(name: 'name', phone: "#{1}" * 9) }