23 lines
		
	
	
		
			439 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			439 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
---
 | 
						|
name: Ruby Test
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    branches:
 | 
						|
      - "**"
 | 
						|
  pull_request:
 | 
						|
jobs:
 | 
						|
  test:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    steps:
 | 
						|
      - name: Checkout
 | 
						|
        uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
 | 
						|
 | 
						|
      - name: Test
 | 
						|
        uses: ruby/setup-ruby@dffc446db9ba5a0c4446edb5bca1c5c473a806c5 # v1.235.0
 | 
						|
        with:
 | 
						|
          ruby-version: '3.4'
 | 
						|
          bundler-cache: true
 | 
						|
 | 
						|
      - run: bundle exec rake
 | 
						|
 |