We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15d687e commit f342e0bCopy full SHA for f342e0b
.github/workflows/ci.yml
@@ -7,6 +7,7 @@ on:
7
push:
8
branches:
9
- main
10
+ workflow_call:
11
12
jobs:
13
sqlite:
.github/workflows/publish_gem.yml
@@ -8,7 +8,11 @@ on:
type: string
+ test:
+ uses: ./.github/workflows/ci.yml
+
14
15
+ needs: test
16
runs-on: ubuntu-latest
17
18
permissions:
@@ -27,9 +31,8 @@ jobs:
27
31
- name: Update version
28
32
run: |
29
33
sed -i 's/".*"/"${{ inputs.version }}"/' lib/noticed/version.rb
30
- bundle config set frozen false
34
+ bundle config set --local deployment 'false'
35
bundle
- bundle exec appraisal
36
git config user.name 'GitHub Actions'
37
git config user.email [email protected]
38
git add Gemfile.lock gemfiles lib
0 commit comments