Scaffold fiken gem: gemspec, dev tooling, rubocop, and CI

This commit is contained in:
2026-05-29 15:00:48 +02:00
commit 9eec49aec4
12 changed files with 155 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["3.1", "3.2", "3.3"]
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rspec
- run: bundle exec rubocop