Skip to content

Commit

Permalink
Merge pull request #1 from dvla/github-actions
Browse files Browse the repository at this point in the history
Add GitHub actions
  • Loading branch information
mjrisaac authored Feb 6, 2024
2 parents ad8282a + 427f74d commit 7ec5f8c
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 16 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/gem-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Ruby Gem Publish

on:
push:
branches: [ "main" ]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [ '3.0', '3.1', '3.2' ]

steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rspec

deploy:
needs: test
runs-on: ubuntu-latest
permissions:
packages: write
contents: read

steps:
- uses: actions/checkout@v2
- name: Set up Ruby 3.0.1
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1.2
bundler-cache: true

- name: Publish to RubyGems
run: |
mkdir -p $HOME/.gem
touch $HOME/.gem/credentials
chmod 0600 $HOME/.gem/credentials
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
gem build *.gemspec
gem push *.gem
env:
GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
22 changes: 22 additions & 0 deletions .github/workflows/gem-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Ruby Test

on:
pull_request:
branches: [ "main" ]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [ '3.0', '3.1', '3.2' ]

steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rspec
16 changes: 0 additions & 16 deletions .github/workflows/main.yml

This file was deleted.

0 comments on commit 7ec5f8c

Please sign in to comment.