Skip to content

Commit

Permalink
Run separate jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
koppen committed Oct 7, 2023
1 parent b679c69 commit 555387a
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,24 @@ name: Ruby
on: [push,pull_request]

jobs:
build:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
bundler-cache: true
- name: Verify version
run: ruby -v
- name: Run the default task
run: bundle exec rake

lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
bundler-cache: true
- name: Lint
run: bundle exec standardrb

0 comments on commit 555387a

Please sign in to comment.