Skip to content

Commit

Permalink
remove other OS from workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
danini-the-panini committed Nov 17, 2024
1 parent 1787468 commit 9b5c5ee
Showing 1 changed file with 1 addition and 29 deletions.
30 changes: 1 addition & 29 deletions .github/workflows/build-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- main

jobs:
linux:
test:
name: Linux
runs-on: ubuntu-latest
strategy:
Expand All @@ -30,31 +30,3 @@ jobs:
- name: Test
if: github.event_name != 'push'
run: bundle exec rake test

macos:
name: macOS
runs-on: macos-latest
strategy:
matrix:
ruby: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3', 'head']
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake test

windows:
name: Windows
runs-on: windows-latest
strategy:
matrix:
ruby: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3', 'head']
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake test

0 comments on commit 9b5c5ee

Please sign in to comment.