3535 # support extended test suite for release candidate branches,
3636 # it is not expected to have many changes in these branches,
3737 # so running extended tests is not a burden
38- - " branch-*"
38+ - ' branch-*'
3939 # Also run for changes to some critical areas that are most likely
4040 # to trigger errors in extended tests
4141 pull_request :
42- branches : ["**" ]
42+ branches : [ '**' ]
4343 paths :
44- - " datafusion/physical*/**/*.rs"
45- - " datafusion/expr*/**/*.rs"
46- - " datafusion/optimizer/**/*.rs"
47- - " datafusion-testing"
44+ - ' datafusion/physical*/**/*.rs'
45+ - ' datafusion/expr*/**/*.rs'
46+ - ' datafusion/optimizer/**/*.rs'
47+ - ' datafusion-testing'
4848 workflow_dispatch :
4949 inputs :
5050 pr_number :
51- description : " Pull request number"
51+ description : ' Pull request number'
5252 type : string
5353 check_run_id :
54- description : " Check run ID for status updates"
54+ description : ' Check run ID for status updates'
5555 type : string
5656 pr_head_sha :
57- description : " PR head SHA"
57+ description : ' PR head SHA'
5858 type : string
5959
6060permissions :
6161 contents : read
6262 checks : write
6363
6464jobs :
65+
6566 # Check crate compiles and base cargo check passes
6667 linux-build-lib :
6768 name : linux build test
6869 runs-on : ubuntu-latest
6970 # note: do not use amd/rust container to preserve disk space
7071 steps :
71- - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
72+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
7273 with :
7374 ref : ${{ github.event.inputs.pr_head_sha }} # will be empty if triggered by push
7475 submodules : true
@@ -92,13 +93,13 @@ jobs:
9293 runs-on : ubuntu-latest
9394 # note: do not use amd/rust container to preserve disk space
9495 steps :
95- - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
96+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
9697 with :
9798 ref : ${{ github.event.inputs.pr_head_sha }} # will be empty if triggered by push
9899 submodules : true
99100 fetch-depth : 1
100101 - name : Free Disk Space (Ubuntu)
101- uses : jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1
102+ uses : jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1
102103 - name : Install Rust
103104 run : |
104105 curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
@@ -136,7 +137,7 @@ jobs:
136137 container :
137138 image : amd64/rust
138139 steps :
139- - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
140+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
140141 with :
141142 ref : ${{ github.event.inputs.pr_head_sha }} # will be empty if triggered by push
142143 submodules : true
@@ -157,7 +158,7 @@ jobs:
157158 container :
158159 image : amd64/rust
159160 steps :
160- - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
161+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
161162 with :
162163 ref : ${{ github.event.inputs.pr_head_sha }} # will be empty if triggered by push
163164 submodules : true
0 commit comments