Skip to content

Commit

Permalink
Now with ruby setup
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-bernhardt committed Sep 10, 2024
1 parent 6fafab3 commit 142455a
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/ensure-annotation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,26 @@ on: [push]

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: ruby/setup-ruby@v1

- uses: actions/cache@v4
with:
path: vendor/bundle
key: bundle-use-ruby-ubuntu-22.04-${{ hashFiles('.ruby-version') }}-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
bundle-use-ruby-ubuntu-22.04-${{ hashFiles('.ruby-version') }}-
- name: bundle install
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- run: make annotate

Expand Down

0 comments on commit 142455a

Please sign in to comment.