We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f072f49 commit 84aaf01Copy full SHA for 84aaf01
2 files changed
.github/workflows/specs.yml
@@ -0,0 +1,23 @@
1
+name: Run Specs
2
+
3
+on:
4
+ pull_request:
5
+ branches: [main]
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ permissions:
11
+ contents: read
12
+ packages: write
13
14
+ steps:
15
+ - uses: actions/checkout@v3
16
17
+ - name: Setup Ruby
18
+ uses: ruby/setup-ruby@v1.152.0
19
+ with:
20
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
21
22
+ - name: Run Specs
23
+ run: bin/rspec
.github/workflows/tag.yml
@@ -13,5 +13,13 @@ jobs:
with:
fetch-depth: 2
24
- name: Tag new version
25
uses: salsify/action-detect-and-tag-new-version@v2
0 commit comments