Skip to content

Commit

Permalink
fix: refactor github ci
Browse files Browse the repository at this point in the history
  • Loading branch information
bibendi committed Feb 26, 2024
1 parent a12898f commit c47293d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 27 deletions.
27 changes: 0 additions & 27 deletions .github/workflows/lint.yaml

This file was deleted.

19 changes: 19 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,25 @@ on:
branches: [ '**' ]

jobs:
lint:
runs-on: ubuntu-latest
env:
RUBY_VERSION: "3.3"
name: Rubocop
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Ruby w/ same version as image
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
- name: Install dependencies
run: |
gem install dip
dip bundle install
- name: Run linter
run: dip rubocop

test:
runs-on: ubuntu-latest
strategy:
Expand Down

0 comments on commit c47293d

Please sign in to comment.