mirror of
				https://github.com/jnunemaker/httparty
				synced 2023-03-27 23:23:07 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			542 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			542 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: CI
 | 
						|
on: [push, pull_request]
 | 
						|
jobs:
 | 
						|
  build:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    strategy:
 | 
						|
      matrix:
 | 
						|
        ruby:
 | 
						|
          - 2.3
 | 
						|
          - 2.4
 | 
						|
          - 2.5
 | 
						|
          - 2.6
 | 
						|
          - 2.7
 | 
						|
    steps:
 | 
						|
      - name: Check out repository code
 | 
						|
        uses: actions/checkout@v2
 | 
						|
      - name: Set up Ruby
 | 
						|
        uses: ruby/setup-ruby@v1
 | 
						|
        with:
 | 
						|
          ruby-version: ${{ matrix.ruby }}
 | 
						|
          bundler-cache: true # Run "bundle install", and cache the result automatically.
 | 
						|
      - name: Run Rake
 | 
						|
        run: bundle exec rake
 |