Skip to content

Commit

Permalink
Updates from master
Browse files Browse the repository at this point in the history
  • Loading branch information
bdunne committed Jul 2, 2024
1 parent ccbc027 commit 23ed342
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,27 +1,31 @@
---
name: CI

on: [push, pull_request]

on:
push:
pull_request:
schedule:
- cron: 0 0 * * *
workflow_dispatch:
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version:
- '2.6'
- '2.7'
- '3.1'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Before install
run: bin/before_install
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
ruby-version: "${{ matrix.ruby-version }}"
bundler-cache: true
timeout-minutes: 30
- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: '1.14'
- name: Run tests
go-version-file: manageiq-operator/go.mod
- name: Run ruby tests
run: bundle exec rake

0 comments on commit 23ed342

Please sign in to comment.