Skip to content

Commit

Permalink
Latest 5.7.1 build for github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ppeble committed Jan 11, 2024
1 parent a6f65e6 commit 381bc52
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 13 deletions.
28 changes: 15 additions & 13 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: definitions
name: Ruby
on:
push:
branches: [ "master" ]
Expand All @@ -8,18 +8,20 @@ permissions:
contents: read
jobs:
test:
name: verify
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [2.4, 2.5, 2.6, 2.7, 3.0, 3.1, 3.2, 'ruby-head']
matrix:
ruby-version: ['2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2', 'ruby-head']
env:
BUNDLER_NO_OLD_RUBYGEMS_WARNING: true
steps:
- uses: actions/checkout@v2
- name: Setup Ruby
uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Run tests
run: make test
- name: Run validate
run: make validate
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run validate
run: make validate
- name: Run tests
run: make test
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Holiday definitions

## 5.7.1

- Update with github actions

## 5.7.0

* Add GitHub Actions
Expand Down

0 comments on commit 381bc52

Please sign in to comment.