From f6b2447e386e7e71edb456fb81ad04da251addd1 Mon Sep 17 00:00:00 2001 From: Michael Telford Date: Wed, 27 Mar 2024 10:18:43 +0000 Subject: [PATCH] CI updates --- .github/workflows/wgit.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/wgit.yaml b/.github/workflows/wgit.yaml index 01440be..7d40c99 100644 --- a/.github/workflows/wgit.yaml +++ b/.github/workflows/wgit.yaml @@ -2,15 +2,19 @@ name: wgit on: [push] jobs: wgit-ci: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 services: mongodb: image: michaeltelford/mongo-wgit ports: - 27017:27017 steps: - - name: bundle - run: bundle install + - uses: actions/checkout@v4 + - uses: ruby/setup-ruby@v1 + with: + # ruby-version: '3.3' # Not needed with a .ruby-version file + bundler-cache: true # runs 'bundle install' and caches installed gems automatically + - name: ci run: bundle exec toys ci - name: docs