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) }