Skip to content

Commit caea6e6

Browse files
committed
ci: run standard in the suite
1 parent ef98971 commit caea6e6

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/main.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,20 @@ on:
1515
- '*'
1616

1717
jobs:
18+
lint:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/checkout@v4
22+
- run: rm Gemfile.lock
23+
- uses: ruby/setup-ruby@v1
24+
with:
25+
ruby-version: "3.3"
26+
bundler: latest
27+
bundler-cache: true
28+
- run: bundle exec rake standard
29+
1830
build:
31+
needs: [ lint ]
1932
runs-on: ubuntu-latest
2033
strategy:
2134
fail-fast: false

0 commit comments

Comments
 (0)