Skip to content

Commit

Permalink
Help
Browse files Browse the repository at this point in the history
  • Loading branch information
hunchr committed Nov 4, 2024
1 parent d5ba115 commit 53be4db
Showing 1 changed file with 22 additions and 20 deletions.
42 changes: 22 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,26 @@ name: ci
on: push

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [3.0, 3.3]
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby }}

- name: Install Dependencies
run: bundle exec appraisal install && cd spec/dummy && bundle

- name: Run tests
run: bundle exec appraisal bin/check
# test:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# ruby: [3.0, 3.3]
# steps:
# - name: Checkout Repository
# uses: actions/checkout@v4

# - name: Set up Ruby
# uses: ruby/setup-ruby@v1
# with:
# bundler-cache: true
# ruby-version: ${{ matrix.ruby }}

# - name: Install Dependencies
# run: bundle exec appraisal install && cd spec/dummy && bundle

# - name: Run tests
# run: bundle exec appraisal bin/check

lint:
runs-on: ubuntu-latest
Expand All @@ -36,5 +36,7 @@ jobs:
bundler-cache: true
ruby-version: 3.3

- name: debugging
run: ls -A && bundle exec rubocop -h && rubocop -h || true
- name: Run linters
run: bin/fastcheck

0 comments on commit 53be4db

Please sign in to comment.