From 9b5c5ee3df54f8356855631ce3f10c581fea464a Mon Sep 17 00:00:00 2001 From: Danielle Smith Date: Sun, 17 Nov 2024 22:12:53 +0200 Subject: [PATCH] remove other OS from workflows --- .github/workflows/build-workflow.yml | 30 +--------------------------- 1 file changed, 1 insertion(+), 29 deletions(-) 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