Commit 9cd9ebc 1 parent 0d8f4f7 commit 9cd9ebc Copy full SHA for 9cd9ebc
File tree 5 files changed +51
-6
lines changed
5 files changed +51
-6
lines changed Original file line number Diff line number Diff line change 5
5
branches : [ develop ]
6
6
7
7
permissions :
8
- id-token : write # enables AWS-GitHub OIDC
8
+ id-token : write # enables AWS-GitHub OIDC
9
9
actions : read
10
10
contents : write
11
11
deployments : write
Original file line number Diff line number Diff line change 13
13
permissions :
14
14
actions : read
15
15
contents : read
16
- checks : write # audit-check creates checks
17
- issues : write # audit-check creates issues
16
+ checks : write # audit-check creates checks
17
+ issues : write # audit-check creates issues
18
18
19
19
env :
20
20
CARGO_TERM_COLOR : always
21
21
RUST_BACKTRACE : 1
22
22
23
23
jobs :
24
+ validate-workflow-yaml :
25
+ runs-on : ubuntu-latest
26
+ steps :
27
+ - uses : actions/checkout@v2
28
+ - name : Validate YAML file
29
+ run : |
30
+ # Lint the workflows and yamllint's configuration file.
31
+ yamllint \
32
+ -c yamllint-config.yaml \
33
+ yamllint-config.yaml \
34
+ .github/workflows
35
+
24
36
python-lint :
25
37
name : " Python (lint)"
26
38
runs-on : ubuntu-latest
@@ -130,7 +142,7 @@ jobs:
130
142
uses : taiki-e/install-action@cargo-hack
131
143
- name : Rust Build (${{matrix.config.name}})
132
144
run : cargo hack ${{matrix.config.command}} --locked ${{matrix.config.args}} --ignore-private
133
-
145
+
134
146
check-min-deps :
135
147
name : " Check build with minimal dependencies"
136
148
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Fuzz
2
2
3
3
on :
4
4
schedule :
5
- - cron : ' 0 0 * * *' # daily
5
+ - cron : ' 0 0 * * *' # daily
6
6
workflow_dispatch :
7
7
8
8
jobs :
Original file line number Diff line number Diff line change 26
26
needs : label_trigger
27
27
uses : ./.github/workflows/sql-benchmarks.yml
28
28
with :
29
- mode : ' pr'
29
+ mode : ' pr'
Original file line number Diff line number Diff line change
1
+ ---
2
+
3
+ yaml-files :
4
+ - ' *.yaml'
5
+ - ' *.yml'
6
+ - ' .yamllint'
7
+
8
+ rules :
9
+ anchors : enable
10
+ braces : disable
11
+ brackets : disable
12
+ colons : enable
13
+ commas : enable
14
+ comments :
15
+ level : warning
16
+ comments-indentation :
17
+ level : warning
18
+ document-end : disable
19
+ document-start : disable
20
+ empty-lines : enable
21
+ empty-values : disable
22
+ float-values : disable
23
+ hyphens : enable
24
+ indentation : enable
25
+ key-duplicates : enable
26
+ key-ordering : disable
27
+ line-length : disable
28
+ new-line-at-end-of-file : enable
29
+ new-lines : enable
30
+ octal-values : disable
31
+ quoted-strings : disable
32
+ trailing-spaces : enable
33
+ truthy : disable
You can’t perform that action at this time.
0 commit comments