mirror of
				https://github.com/jnunemaker/httparty
				synced 2023-03-27 23:23:07 -04:00 
			
		
		
		
	Adds Ruby 3.1 to CI
This PR adds Ruby 3.1 to the CI matrix. It includes two other changes: 1. Removes the .simplecov file, which causes an error on Ruby 3.1 (coverage attempts to start twice) 2. Removes the require "pry", as pry is not going to be the Ruby debugger going forward
This commit is contained in:
		
							parent
							
								
									0b3e3384e0
								
							
						
					
					
						commit
						781dfed0b0
					
				
					 3 changed files with 1 additions and 2 deletions
				
			
		
							
								
								
									
										1
									
								
								.github/workflows/ci.yml
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								.github/workflows/ci.yml
									
										
									
									
										vendored
									
									
								
							| 
						 | 
					@ -12,6 +12,7 @@ jobs:
 | 
				
			||||||
          - 2.6
 | 
					          - 2.6
 | 
				
			||||||
          - 2.7
 | 
					          - 2.7
 | 
				
			||||||
          - '3.0' # Quoted, to avoid YAML float 3.0 interplated to "3"
 | 
					          - '3.0' # Quoted, to avoid YAML float 3.0 interplated to "3"
 | 
				
			||||||
 | 
					          - 3.1
 | 
				
			||||||
    steps:
 | 
					    steps:
 | 
				
			||||||
      - name: Check out repository code
 | 
					      - name: Check out repository code
 | 
				
			||||||
        uses: actions/checkout@v2
 | 
					        uses: actions/checkout@v2
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1 +0,0 @@
 | 
				
			||||||
SimpleCov.start "test_frameworks"
 | 
					 | 
				
			||||||
| 
						 | 
					@ -1,6 +1,5 @@
 | 
				
			||||||
require "simplecov"
 | 
					require "simplecov"
 | 
				
			||||||
SimpleCov.start
 | 
					SimpleCov.start
 | 
				
			||||||
require 'pry'
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
require "httparty"
 | 
					require "httparty"
 | 
				
			||||||
require 'webmock/rspec'
 | 
					require 'webmock/rspec'
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue