Maintenance #137
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Gem Build and Release | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
name: Gem / Test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby-version: ['2.7', '3.0', '3.1', '3.2'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler-cache: true | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Run prettier | |
run: npm ci && npm run lint | |
- name: Run Rubocop | |
run: bundle exec rubocop | |
- name: Run tests | |
run: bundle exec rspec | |
release: | |
name: Gem / Release | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- uses: fac/ruby-gem-setup-credentials-action@v2 | |
with: | |
user: '' | |
key: rubygems | |
token: ${{ secrets.RUBYGEMS_API_KEY }} | |
- name: Build Gem | |
run: bundle exec rake build | |
- name: Release Gem | |
if: github.ref == 'refs/heads/main' | |
uses: fac/ruby-gem-push-action@v2 | |
with: | |
key: rubygems |