From 755737c61e411923cd637f7e460624062b84330e Mon Sep 17 00:00:00 2001 From: Todd Huss Date: Thu, 2 Nov 2023 10:32:17 -0700 Subject: [PATCH] Remove extra github action file --- .github/workflows/master.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/master.yml diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml deleted file mode 100644 index ed8be0b..0000000 --- a/.github/workflows/master.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Development - -on: - push: - -jobs: - tests: - name: Tests - runs-on: ubuntu-latest - strategy: - matrix: - ruby_version: - - 2.7.7 - - 3.0.5 - - 3.1.3 - ar: - - "~> 6.0.0" - - "~> 6.1.0" - env: - NOKOGIRI_USE_SYSTEM_LIBRARIES: 1 - AR: ${{ matrix.ar }} - steps: - - uses: actions/checkout@v3 - - uses: ruby/setup-ruby@v1 - with: - ruby-version: ${{ matrix.ruby_version }} - bundler-cache: true - - run: bundle exec rake spec