Skip to content

Commit

Permalink
Setup github actions for standardrb
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillplatonov committed Mar 19, 2023
1 parent 636b37c commit a834e50
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on:
pull_request:
branches:
- '*'
push:
branches:
- main

jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: StandardRb check
run: bundle exec standardrb
3 changes: 3 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ GEM
nio4r (2.5.8)
nokogiri (1.14.2-arm64-darwin)
racc (~> 1.4)
nokogiri (1.14.2-x86_64-linux)
racc (~> 1.4)
parallel (1.22.1)
parser (3.2.1.1)
ast (~> 2.4.1)
Expand Down Expand Up @@ -187,6 +189,7 @@ PLATFORMS
arm64-darwin-20
arm64-darwin-21
arm64-darwin-22
x86_64-linux

DEPENDENCIES
hotwire-livereload!
Expand Down

0 comments on commit a834e50

Please sign in to comment.