File tree 1 file changed +7
-10
lines changed
1 file changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ name: CI
2
2
3
3
on :
4
4
push :
5
- branches : [main]
5
+ branches : [ main ]
6
6
pull_request :
7
- branches : [main]
7
+ branches : [ main ]
8
8
release :
9
- types : [published]
9
+ types : [ published ]
10
10
workflow_dispatch :
11
11
12
12
defaults :
19
19
runs-on : ubuntu-latest
20
20
steps :
21
21
- uses : taiki-e/install-action@v2
22
- with :
23
- tool : just
22
+ with : { tool: just }
24
23
- uses : actions/checkout@v4
25
24
- uses : Swatinem/rust-cache@v2
26
25
if : github.event_name != 'release' && github.event_name != 'workflow_dispatch'
31
30
runs-on : ubuntu-latest
32
31
steps :
33
32
- uses : taiki-e/install-action@v2
34
- with :
35
- tool : just
33
+ with : { tool: just }
36
34
- uses : actions/checkout@v4
37
35
- uses : Swatinem/rust-cache@v2
38
36
if : github.event_name != 'release' && github.event_name != 'workflow_dispatch'
74
72
sqlite3 : sqlite3
75
73
steps :
76
74
- uses : taiki-e/install-action@v2
77
- with :
78
- tool : just
75
+ with : { tool: just }
79
76
- uses : actions/checkout@v4
80
77
- uses : Swatinem/rust-cache@v2
81
78
if : github.event_name != 'release' && github.event_name != 'workflow_dispatch'
@@ -119,7 +116,7 @@ jobs:
119
116
env :
120
117
EXTENSION_FILE : target/${{ matrix.target }}/release/examples/${{ matrix.file }}
121
118
SQLITE3_BIN : ${{ matrix.sqlite3 }}
122
- run : ./tests/test-ext.sh
119
+ run : ./tests/test-ext.sh
123
120
# - name: Test ${{ matrix.target }} extension
124
121
# if: matrix.target != 'aarch64-apple-darwin'
125
122
# run: just sqlite3=${{ matrix.sqlite3 }} extension_file=target/${{ matrix.target }}/release/examples/${{ matrix.file }} test-ext
You can’t perform that action at this time.
0 commit comments