Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnversluis committed Sep 12, 2024
0 parents commit 7c49b52
Show file tree
Hide file tree
Showing 109 changed files with 4,152 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/s2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: "S2 gem"
on:
pull_request:
push:
branches: [ "main" ]
jobs:
rubocop:
runs-on: ubuntu-latest

env:
RAILS_ENV: test
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true

- name: Rubocop
run: bundle exec rubocop

rspec:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true

- name: RSpec
run: bundle exec rspec --format documentation
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/.bundle/
/.yardoc
/_yardoc/
/coverage/
/doc/
/pkg/
/spec/reports/
/tmp/
spec/examples.txt
1 change: 1 addition & 0 deletions .rspec
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--require spec_helper
Loading

0 comments on commit 7c49b52

Please sign in to comment.