File tree Expand file tree Collapse file tree 2 files changed +13
-10
lines changed Expand file tree Collapse file tree 2 files changed +13
-10
lines changed Original file line number Diff line number Diff line change 1
- lib = File . expand_path ( 'lib' , __dir__ )
1
+ lib = File . expand_path ( '../../ lib' , __dir__ )
2
2
$LOAD_PATH. unshift ( lib ) unless $LOAD_PATH. include? ( lib )
3
3
require 'datadog'
4
4
Original file line number Diff line number Diff line change @@ -13,23 +13,26 @@ on: # yamllint disable-line rule:truthy
13
13
branches :
14
14
- master
15
15
16
+ concurrency :
17
+ group : ${{ github.workflow }}-${{ github.ref }}
18
+ cancel-in-progress : true
19
+
16
20
# Default permissions for all jobs
17
21
permissions : {}
18
22
19
23
jobs :
20
- build :
24
+ run :
21
25
runs-on : ubuntu-22.04
22
26
permissions : {}
23
27
steps :
24
- - name : Checkout code
25
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
28
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
26
29
with :
27
30
persist-credentials : false
28
-
29
- # - name: Set up Ruby
30
- # uses: ruby/setup-ruby@13e7a03dc3ac6c3798f4570bfead2aed4d96abfb # v1.244.0
31
- # with:
32
- # ruby-version: "3.4"
31
+ - name : Restore bundle cache
32
+ uses : ./.github/actions/bundle-restore
33
+ with :
34
+ lockfile : ${{ needs.build.outputs.lockfile }}
35
+ cache-key : ${{ needs.build.outputs.cache-key }}
33
36
34
37
- name : Check for missing documentation
35
- run : ruby .github/scripts/check_config_doc.rb
38
+ run : bundle exec ruby .github/scripts/check_config_doc.rb
You can’t perform that action at this time.
0 commit comments