We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c484575 commit 3465fc8Copy full SHA for 3465fc8
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,28 @@
1
+name: Tests
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
9
+jobs:
10
+ rubocop:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v6
14
+ - uses: ruby/setup-ruby@v1
15
+ with:
16
+ ruby-version: '.ruby-version'
17
+ bundler-cache: true
18
+ - run: bundle exec rubocop --parallel
19
20
+ rspec:
21
22
23
24
25
26
27
28
+ - run: bundle exec rspec
0 commit comments