Skip to content

Commit

Permalink
Fix tmpdir
Browse files Browse the repository at this point in the history
  • Loading branch information
UserNotFound committed Jul 3, 2024
1 parent 6843319 commit fe15676
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 13 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
RUBY_VERSION: ["2.0", "2.1", "2.2", "2.3"]
DYNAMIC_UNO_RUBY_VERSION: ["3.0"]
RUBY_VERSION: ["2.0", "2.1", "2.2", "2.3", "3.0"]
steps:
- name: Check out code
uses: actions/checkout@v4
Expand All @@ -28,7 +27,21 @@ jobs:
with:
ruby-version: ${{ matrix.RUBY_VERSION }}
bundler-cache: true
bundler-version: 1.13.6
bundler: 1.13.6

- name: Run Tests
run: bundle exec rake

results:
if: ${{ always() }}
runs-on: ubuntu-latest
name: Final Results
needs: [test]
steps:
- run: exit 1
# see https://stackoverflow.com/a/67532120/4907315
if: >-
${{
contains(needs.*.result, 'failure')
|| contains(needs.*.result, 'cancelled')
}}
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

1 change: 1 addition & 0 deletions spec/spawn_passthrough_spec.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
require 'spec_helper'
require 'tmpdir'

describe SpawnPassthrough do
it 'has a version number' do
Expand Down

0 comments on commit fe15676

Please sign in to comment.