Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Swimburger committed Mar 19, 2024
1 parent 1f2c936 commit ce1106f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- run: bundle install

- name: Rubocop
run: rubocop
run: bundle exec rubocop

- name: Test
run: bundle exec ruby test/test_assemblyai.rb
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- run: bundle install

- name: Rubocop
run: rubocop
run: bundle exec rubocop

- name: Test
run: bundle exec ruby test/test_assemblyai.rb
Expand Down
2 changes: 1 addition & 1 deletion test/test_assemblyai.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class TestAssemblyAI < Minitest::Test
def test_init
# this test verifies that the SDK can be imported/initialized
client = AssemblyAI::Client.new(api_key: "YOUR API KEY")
AssemblyAI::Client.new(api_key: "YOUR API KEY")
end

def test_pagination
Expand Down

0 comments on commit ce1106f

Please sign in to comment.