diff --git a/.github/workflows/build-workflow.yml b/.github/workflows/build-workflow.yml index 62d9051..2bd8571 100644 --- a/.github/workflows/build-workflow.yml +++ b/.github/workflows/build-workflow.yml @@ -8,7 +8,7 @@ on: - main jobs: - linux: + test: name: Linux runs-on: ubuntu-latest strategy: @@ -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